{"id":206194,"date":"2020-11-25T22:57:17","date_gmt":"2020-11-25T14:57:17","guid":{"rendered":"http:\/\/4563.org\/?p=206194"},"modified":"2020-11-25T22:57:17","modified_gmt":"2020-11-25T14:57:17","slug":"go-%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0-python-%e4%b8%ad%e7%9a%84-super","status":"publish","type":"post","link":"http:\/\/4563.org\/?p=206194","title":{"rendered":"go \u5982\u4f55\u5b9e\u73b0 Python \u4e2d\u7684 super?"},"content":{"rendered":"<div>\n<div>\n<div>\n<h1>                  go \u5982\u4f55\u5b9e\u73b0 Python \u4e2d\u7684 super?               <\/h1>\n<p> <\/p>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : chaleaoch <\/span>  <span><i><\/i> 0<\/span> <\/div>\n<div> <\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div isfirst=\"1\"> <\/p>\n<p>python \u4e2d\u7c7b\u4f3c\u7684\u9700\u6c42\u5f88\u5bb9\u6613\u5b9e\u73b0.<\/p>\n<pre><code>from abc import ABC   class Foooooo(ABC):     def test_method(self):         pass   class Foo(Foooooo):     def test_method(self):         super().test_method()         print(\"im in Foo\")   class FooMixin(Foooooo):     def test_method(self):         super().test_method()         print(\"im in FooMixin\")   class FooMixin2(Foooooo):     def test_method(self):         super().test_method()         print(\"im in FooMixin2\")   class FooSubCls(Foo, FooMixin, FooMixin2):     def test_method(self):         super().test_method()         print(\"im in FooSubCls\")   FooSubCls().test_method() <\/code><\/pre>\n<p>\u6211\u53ef\u4ee5\u6dfb\u52a0\u65e0\u6570\u4e2a test_method \u8fd9\u4e2a\u5728 django \u4e2d\u5c24\u5176\u5e38\u89c1. \u8bf7\u95ee \u5728 go \u4e2d\u5982\u4f55\u5b9e\u73b0\u7c7b\u4f3c\u529f\u80fd? \u624b\u52a8\u6307\u5b9a\u7684\u8bdd, \u53ef\u80fd\u5f97\u628a\u6574\u4e2a\u7ee7\u627f\u5173\u7cfb\u68b3\u7406\u4e00\u904d,\u5426\u5219\u53ef\u80fd\u9020\u6210\u67d0\u4e2a\u65b9\u6cd5\u6267\u884c\u4e86\u4e24\u904d.<\/p>\n<p>\u63d0\u524d\u8868\u793a\u611f\u8c22.<\/p>\n<\/p><\/div>\n<div> <b>\u5927\u4f6c\u6709\u8a71\u8aaa<\/b> (<span>14<\/span>)        <\/div>\n<div> <\/div>\n<\/p><\/div>\n<\/p><\/div>\n<ul>\n<li data-pid=\"4323101\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : wellsc <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5187\u7ee7\u627f\uff0c\u4f60\u53ef\u4ee5\u7ec4\u5408\u4e00\u4e0b                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323102\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : BoarBoar <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6ca1\u7ee7\u627f\uff0c\u4f60\u8fd9\u4e2a\u95ee\u9898\u672c\u8d28\u5c5e\u4e8e\u591a\u6001\u7684\u4f7f\u7528\uff0cstruct \u7684\u7ec4\u5408\u80fd\u5b9e\u73b0\u7ee7\u627f\u800c\u65e0\u6cd5\u5b9e\u73b0\u591a\u6001<br \/>go \u4f7f\u7528 interface \u5b9e\u73b0\u591a\u6001\uff0c\u5199\u8fc7 java \u7684\u4e0d\u4f1a\u964c\u751f\uff0c\u867d\u7136 java \u4e07\u7269\u7686\u7c7b\uff0c\u4f46\u751f\u4ea7\u4e5f\u63d0\u5021\u4f7f\u7528\u63a5\u53e3<\/p>\n<p>\u4f60\u7684\u4ee3\u7801\u53ef\u4ee5\u8fd9\u6837\u5199\uff1a<br \/>type test interface {<br \/>test_method \uff08\uff09<br \/>}<\/p>\n<p>type Foo struct {<br \/>}<\/p>\n<p>func(f *Foo )test_method{<br \/>print(&#8220;im in Foo&#8221;)<br \/>}<\/p>\n<p>type Foo1 struct {<br \/>}<\/p>\n<p>func(f *Foo1 )test_method{<br \/>print(&#8220;im in Foo1&#8221;)<br \/>}<\/p>\n<p>\u8fd9\u6837\uff0cfoo \u548c foo1 \u90fd\u5b9e\u73b0\u4e86 test \u63a5\u53e3\uff0cfoo \u548c foo1 \u7684\u5b9e\u4f8b\uff08\u5bf9\u8c61\uff09\u90fd\u53ef\u4ee5\u8d4b\u503c\u7ed9 test \u63a5\u53e3,\u8c03\u7528 test_method \u65f6\u6839\u636e\u63a5\u53e3\u6301\u6709\u7684\u7c7b\u578b\uff0c\u53bb\u8c03\u7528\u8be5\u7c7b\u578b\u5b9e\u73b0\u7684\u65b9\u6cd5,\u5b9e\u73b0\u591a\u6001<\/p>\n<p>func main(){<br \/>var t test<br \/>t = &amp;Foo{}<br \/>t.test_method() \/\/&#8221;im in Foo&#8221;<br \/>t = &amp;Foo1{}<br \/>t.test_method() \/\/&#8221;im in Foo1&#8243;<br \/>}<\/p>\n<p>\u6bd4\u8f83\u5178\u578b\u7684\u662f\u6807\u51c6\u5e93 io.writer \u548c io.reader \u63a5\u53e3\uff0c\u4e0d\u7ba1\u662f\u6587\u4ef6\uff0c\u65e5\u5fd7\uff0chttp resp , \u90fd\u53ef\u4ee5\u76f4\u63a5\u4f5c\u4e3a\u53c2\u6570\u4f20\u9012\u5b9e\u73b0\u591a\u6001\u3002<br \/>\u8fd8\u6709 gin \u7684 bind \u51fd\u6570\uff0c\u5b9e\u73b0\u4e86\u4e00\u4e2a\u51fd\u6570\u89e3\u6790\u6240\u6709\u7c7b\u578b\u7684 http \u8bf7\u6c42\u53c2\u6570                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323103\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : f6x <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4e22\u6389\u7ee7\u627f, \u5fd8\u6389 OO, \u62e5\u62b1\u66f4\u7eaf\u7cb9\u7684\u7f16\u7a0b\u5427                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323104\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u4e3b<\/span> <span>\u8cc7\u6df1\u5927\u4f6c : chaleaoch <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @BoarBoar \u611f\u8c22\u56de\u590d,\u6211\u60f3\u8868\u8fbe\u7684\u662f python \u4e2d\u7684 super \u5982\u4f55\u5728 golang \u4e2d\u5b9e\u73b0.<\/p>\n<p>super \u53ef\u4ee5\u5728\u591a\u91cd\u7ee7\u627f\u4e2d\u81ea\u52a8\u627e\u5230\u4ed6\u7684\u7236\u7c7b.<br \/>\u4e0b\u56fe \u5b9e\u9645\u4e0a\u662f\u53ef\u4ee5\u65e0\u9650\u6269\u5c55\u7684, \u4f46\u662f\u5728 go \u4e2d, \u4f3c\u4e4e\u9700\u8981\u624b\u52a8\u6307\u5b9a\u8c03\u7528\u7684\u662f\u54ea\u4e2a\u7c7b(\u7ed3\u6784\u4f53)\u4e2d\u7684\u65b9\u6cd5. \u4f46\u662f\u5728 python \u4e2d,\u4e0d\u9700\u8981\u5728\u610f\u8fd9\u4e9b.\u53ea\u8981\u8c03\u7528 super \u5c31\u53ef\u4ee5\u4e86.<br \/>![image]( https:\/\/user-images.githubusercontent.com\/11831441\/100083359-5285e700-2e84-11eb-9759-22d73ab72856.png)                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323105\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : ihipop <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @chaleaoch \u4f60\u8fd8\u60f3\u7740\u90a3\u4e00\u5957\u4f60\u5c31\u6c38\u8fdc\u4f1a\u89c9\u5f97 go \u522b\u626d\u5199\u4e0d\u597d\u3002go \u91cc\u9762\u53ea\u6709\u7ec4\u5408\uff0c\u6ca1\u6709\u7ee7\u627f\u3002\u63a5\u53e3\u53ea\u80fd\u88ab\u5b9e\u73b0\uff0c\u529f\u80fd\u4ee3\u7801\u53ea\u80fd\u88ab\u4e92\u76f8\u7ec4\u5408\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323106\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : BoarBoar <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @chaleaoch 5 \u8bf4\u4e86\uff0c\u7b54\u6848\u662f\u6ca1\u6cd5\u5b9e\u73b0\uff0c\u53ea\u80fd\u7528\u7ec4\u5408\u548c\u63a5\u53e3\u66ff\u4ee3<br \/>\u800c\u4e14\u7236\u5b50\u7ee7\u627f\u672c\u8eab\u5c31\u5df2\u88ab\u8bc1\u660e\u4e0d\u662f\u6700\u4f18\u65b9\u6848\uff0c\u7ecf\u5386\u51e0\u5341\u5e74\u53d1\u5c55\u7684 java \u5df2\u7ecf\u4e8b\u5b9e\u4e0a\u5728\u751f\u4ea7\u4e2d\u629b\u5f03\u4e86\uff0c\u4e0d\u5fc5\u5f3a\u6c42\u8fd9\u6837\u5b9e\u73b0\u628a                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323107\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Hanggi <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u786e\u5b9e\u6709\u5f88\u591a\u4eba\u5c1d\u8bd5\u628a\u81ea\u5df1\u5728\u5176\u4ed6\u8bed\u8a00\u4e2d\u7528\u8fc7\u7684\uff0c\u89c9\u5f97\u4e0d\u9519\u7684\u529f\u80fd\u8f6c\u79fb\u5230 Go \u8bed\u8a00\u6765\u7528\uff0c\u4f46\u8fd9\u4e9b\u65b9\u6cd5\u901a\u5e38\u4e0d\u7b26\u5408 Go \u8bed\u8a00\u7684\u601d\u60f3\u3002<\/p>\n<p>\u4e00\u79cd\u60c5\u51b5\u662f\uff0c\u91cd\u65b0\u53bb\u9605\u8bfb\u5e76\u7406\u89e3 Go \u8bed\u8a00\u7684\u8bbe\u8ba1\u601d\u60f3\uff0c\u62e5\u62b1 Go \u8bed\u8a00\u3002<br \/>\u8fd8\u6709\u4e00\u79cd\u60c5\u51b5\u5c31\u662f\u9a82 Go \u8bed\u8a00\u4ec0\u4e48\u5783\u573e\u8bed\u8a00\uff0c\u6ca1\u6cd5\u7528\uff0c\u6b8a\u4e0d\u77e5\u662f\u81ea\u5df1\u7684\u601d\u60f3\u65e9\u5df2\u88ab\u7981\u9522\uff0c\u65e0\u6cd5\u63a5\u7eb3\u65b0\u7684\u7406\u5ff5\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323108\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u4e3b<\/span> <span>\u8cc7\u6df1\u5927\u4f6c : chaleaoch <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @Hanggi \u64e6\u8001\u54e5\u592a\u6b66\u65ad\u4e86, \u90a3\u4f60\u8bf4\u6211\u662f\u5c5e\u4e8e\u7b2c\u4e00\u4e2d\u8fd8\u662f\u5c5e\u4e8e\u7b2c\u4e8c\u79cd.                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323109\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : cyrivlclth <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u58f0\u660e\u4e00\u4e2a interface Foo{test_method()}\uff0c\u7136\u540e\u7528\u4e00\u4e2a\u5207\u7247\u6216\u8005\u94fe\u8868\u4e4b\u7c7b\u7684<br \/>foos := []Foo{Foo1,Foo2,Foo3}<br \/>for _,fn:=range foos{<br \/>fn.test_method()<br \/>}<\/p>\n<p>\u5f53\u7136\u8fd9\u6837\u662f\u80fd\u5b9e\u73b0\u4f60\u8bf4\u7684\uff0c\u4e0d\u8fc7\u4e0d\u6e05\u695a\u5177\u4f53\u9700\u6c42\u662f\u5565\u3002\u3002\u3002<br \/>\u53e6\u5916\u5fd8\u8bb0\u7ee7\u627f\uff0c\u5fd8\u8bb0 OO \u5427\u3002\u3002\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323110\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : westoy <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5176\u5b9e super().method(*args)\u672c\u8d28\u4e0a\u5c31\u662f super(self.__class__, self).method(*args), python2 \u65e9\u671f\u7248\u672c\u6ca1 super \u65f6\u4e5f\u662f\u901a\u8fc7\u7236\u7c7b.method(self, *args)\u8fd9\u79cd\u5199\u6cd5\u663e\u6027\u8c03\u7528\u7684\uff0c \u4e00\u76f4\u5230 2.5 \u8fd8\u6709\u5f88\u591a\u4eba\u8fd9\u4e48\u5199\u7684\uff0c \u4e60\u60ef\u8fd9\u79cd\u5199\u6cd5\u7684 pythonist \u53ef\u80fd\u53cd\u800c\u66f4\u559c\u6b22 go \u8fd9\u79cd\u65b9\u5f0f\u5427\uff0c \u6bd4\u8f83\u6e05\u6670\u76f4\u767d                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323111\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Leigg <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u9996\u5148\u641e\u6e05\u695a\u662f\u5426\u9700\u8981\u5b9e\u73b0\uff0c\u8fd9\u662f\u4e00\u4e2a\u597d\u7684\u8bbe\u8ba1\u5417\uff1f\u62bd\u79bb\u672c\u8d28\u5bf9\u5e94 go \u662f\u600e\u6837\u7684\u5b9e\u73b0\uff1f                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323112\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : no1xsyzy <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @westoy super() \u7684\u672c\u8d28\u4e0d\u662f super(self.__class__, self) \u800c\u662f super(&lt;\u8be5\u4ee3\u7801\u6240\u5728\u7c7b&gt;, self)<br \/># super(self.__class__, self) \u662f\u4f1a\u9012\u5f52\u8c03\u7528\u81ea\u8eab\u800c\u7206 call stack \u7684\u3002<br \/>\u5b9e\u9645\u4e0a super \u4e3b\u8981\u89e3\u51b3\u7684\u95ee\u9898\u662f Diamond problem\uff0cPython \u7ed9\u51fa\u7684\u7b54\u6848\u662f\u751f\u6210 MRO \u987a\u5e8f\uff0c\u5229\u7528\u4e86 Python \u91cd\u5ea6\u4f9d\u8d56\u8fd0\u884c\u65f6\u53cd\u5c04\uff08\u5185\u7701\uff09\u7684\u7279\u6027\u3002<br \/>Go \u7ed9\u51fa\u7684\u7b54\u6848\u662f\u4e0d\u7ee7\u627f                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323113\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : no1xsyzy <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8bed\u8a00\u5373\u601d\u7ef4\u65b9\u5f0f\u3002<\/p>\n<p>\u5df2\u7ecf\u8bf4\u8fc7\u591a\u5c11\u6b21\uff0c\u4e0d\u8981\u7528\u4e2d\u6587\u7684\u601d\u7ef4\u53bb\u5b66\u82f1\u6587<br \/>\u770b\u4e0b Rosetta Stone\u00ae \u8fd9\u5957\u81ea\u7136\u8bed\u8a00\u5b66\u4e60\u8f6f\u4ef6\u7684\u505a\u6cd5\uff1a\u6839\u672c\u4e0d\u7ed9\u4f60\u4efb\u4f55\u6bcd\u8bed\u63d0\u793a\uff0c\u76f4\u63a5\u628a\u4f60\u4e22\u5230\u5f85\u5b66\u4e60\u8bed\u8a00\u73af\u5883\u4e2d\u53bb\uff0c\u968f\u7740 \u201c\u7269\u7684\u6307\u793a\u4e0e\u79f0\u547c\u201d \u800c\u542f\u53d1\u6027\u5730\u5b66\u4f1a\u8bed\u8a00 \u2014\u2014 \u5982\u540c\u4e00\u540d\u5a74\u513f\u5b66\u4f1a\u81ea\u5df1\u7684\u6bcd\u8bed\u3002<\/p>\n<p>\u540c\u6837\uff0c\u5b66\u4e60\u65b0\u7684\u7f16\u7a0b\u8bed\u8a00\u4e0d\u8981\u62ff\u65e7\u7684\u53bb\u5957\u4e86\u3002<\/p>\n<p>\u987a\u4fbf\u6709\u4e00\u4e2a\u6982\u5ff5\u53eb \u201c\u8d1f\u8fc1\u79fb\u201d<br \/>\u5982\u679c\u65b0\u65e7\u4e24\u79cd\u8bed\u8a00\u5728\u67d0\u65b9\u9762\u6709\u5f62\u5f0f\u4e0a\u7684\u76f8\u4f3c\u6027\uff0c\u90a3\u5f88\u5bb9\u6613\u8dd1\u504f<br \/>\u5982\u679c\u5f53\u521d\u629b\u5f03\u4e86\u6c49\u5b57\uff0c\u6362\u4e0a\u4e86\u7eaf\u62fc\u97f3\uff0c\u90a3\u4e2d\u56fd\u4eba\u8bf4\u82f1\u8bed\u7684\u53e3\u97f3\u95ee\u9898\u5c31\u6bd4\u5f97\u4e0a\u5370\u5ea6\u4eba\u8bf4\u82f1\u8bed\u4e86\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4323114\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u4e3b<\/span> <span>\u8cc7\u6df1\u5927\u4f6c : chaleaoch <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @no1xsyzy \u53ef\u4ee5\u53ef\u4ee5\u7ee7\u7eed\u52aa\u529b.                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li>\n","protected":false},"excerpt":{"rendered":"<p>go \u5982\u4f55\u5b9e\u73b0 Python \u4e2d\u7684&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[],"tags":[],"_links":{"self":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts\/206194"}],"collection":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=206194"}],"version-history":[{"count":0,"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts\/206194\/revisions"}],"wp:attachment":[{"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=206194"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=206194"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=206194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}