{"id":12893,"date":"2023-09-02T07:22:49","date_gmt":"2023-09-02T07:22:49","guid":{"rendered":"https:\/\/www.webhozz.com\/blog\/?p=12893"},"modified":"2023-09-02T07:22:56","modified_gmt":"2023-09-02T07:22:56","slug":"props-react-js","status":"publish","type":"post","link":"https:\/\/www.webhozz.com\/blog\/props-react-js\/","title":{"rendered":"Props React JS"},"content":{"rendered":"\n<p>Props adalah argumen yang diteruskan ke komponen Rect JS.<\/p>\n\n\n\n<p>Props diteruskan ke komponen melalui atribut HTML.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Props React JS<\/strong><\/h5>\n\n\n\n<p>Fungsi Props React JS dalam argumen seperti dalam JavaScript&nbsp;<em>dan<\/em>&nbsp;atribut dalam HTML.<\/p>\n\n\n\n<p>Untuk mengirim Props ke dalam komponen, gunakan sintaks yang sama dengan atribut<\/p>\n\n\n\n<p>HTML:<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Tambahkan atribut \u201cbrand\u201d ke elemen Car:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\nconst myelement = &lt;Car brand=&quot;Ford&quot; \/&gt;;\n<\/pre><\/div>\n\n\n<p>Komponen menerima argumen sebagai objek&nbsp;<code>props<\/code>:<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Gunakan atribut brand dalam komponen:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\nclass Car extends React.Component {\n  render() {\n    return &lt;h2&gt;I am a {this.props.brand}!&lt;\/h1&gt;;\n  }\n}\n<\/pre><\/div>\n\n\n<h5 class=\"wp-block-heading\"><strong>Melalui Data<\/strong><\/h5>\n\n\n\n<p>Props juga dapat dengan &nbsp;cara mengirimkan data dari satu komponen ke komponen lainnya, sebagai parameter.<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Kirim properti \u201cbrand\u201d dari komponen Garage ke komponen Car:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\nclass Car extends React.Component {\n  render() {\n    return &lt;h2&gt;I am a {this.props.brand}!&lt;\/h2&gt;;\n  }\n}\n \nclass Garage extends React.Component {\n  render() {\n    return (\n      &lt;div&gt;\n      &lt;h1&gt;Who lives in my garage?&lt;\/h1&gt;\n      &lt;Car brand=&quot;Ford&quot; \/&gt;\n      &lt;\/div&gt;\n    );\n  }\n}\n \nReactDOM.render(&lt;Garage \/&gt;, document.getElementById(&#039;root&#039;));\n<\/pre><\/div>\n\n\n<p>Jika kamu memiliki variabel untuk dikirim, dan bukan string seperti pada contoh di atas, kamu cukup memasukkan nama variabel ke dalam kurung keriting:<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Buat variabel bernama \u201ccarname\u201d dan kirim ke komponen Car:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\nclass Car extends React.Component {\n  render() {\n    return &lt;h2&gt;I am a {this.props.brand}!&lt;\/h2&gt;;\n  }\n}\n \nclass Garage extends React.Component {\n  render() {\n    const carname = &quot;Ford&quot;;\n    return (\n      &lt;div&gt;\n      &lt;h1&gt;Who lives in my garage?&lt;\/h1&gt;\n      &lt;Car brand={carname} \/&gt;\n      &lt;\/div&gt;\n    );\n  }\n}\n \nReactDOM.render(&lt;Garage \/&gt;, document.getElementById(&#039;root&#039;));\n<\/pre><\/div>\n\n\n<p>Atau jika itu adalah objek:<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n\n<p>Buat objek bernama \u201ccarinfo\u201d dan kirim ke komponen Car:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\nclass Car extends React.Component {\n  render() {\n    return &lt;h2&gt;I am a {this.props.brand.model}!&lt;\/h2&gt;;\n  }\n}\n \nclass Garage extends React.Component {\n  render() {\n    const carinfo = {name: &quot;Ford&quot;, model: &quot;Mustang&quot;};\n    return (\n      &lt;div&gt;\n      &lt;h1&gt;Who lives in my garage?&lt;\/h1&gt;\n      &lt;Car brand={carinfo} \/&gt;\n      &lt;\/div&gt;\n    );\n  }\n}\n \nReactDOM.render(&lt;Garage \/&gt;, document.getElementById(&#039;root&#039;));\n<\/pre><\/div>\n\n\n<h5 class=\"wp-block-heading\"><strong>Props dalam Konstruktor<\/strong><\/h5>\n\n\n\n<p>Jika komponen kamu memiliki fungsi konstruktor, Props &nbsp;harus selalu diteruskan ke konstruktor dan juga ke React.Component melalui&nbsp;metode<code>&nbsp;super()<\/code>.<\/p>\n\n\n\n<p><strong>Contoh<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\nclass Car extends React.Component {\n  constructor(props) {\n    super(props);\n  }\n  render() {\n    return &lt;h2&gt;I am a Car!&lt;\/h2&gt;;\n  }\n}\n \nReactDOM.render(&lt;Car model=&quot;Mustang&quot;\/&gt;, document.getElementById(&#039;root&#039;));\n<\/pre><\/div>\n\n\n<p><strong>Catatan:<\/strong>\u00a0Props React hanya untuk dibaca!\u00a0kamu akan mengalami error jika kamu mencoba mengubah nilainya.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Props adalah argumen yang diteruskan ke komponen Rect JS. Props diteruskan ke komponen melalui atribut HTML. Props React JS Fungsi Props React JS dalam argumen<\/p>\n","protected":false},"author":15,"featured_media":10127,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2722],"tags":[],"class_list":["post-12893","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-belajar-react-js"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Props React JS - WebHozz Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webhozz.com\/blog\/props-react-js\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Props React JS - WebHozz Blog\" \/>\n<meta property=\"og:description\" content=\"Props adalah argumen yang diteruskan ke komponen Rect JS. Props diteruskan ke komponen melalui atribut HTML. Props React JS Fungsi Props React JS dalam argumen\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhozz.com\/blog\/props-react-js\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHozz Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-02T07:22:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-02T07:22:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/12\/logo-reactjs.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#\\\/schema\\\/person\\\/c14789b713aefdff4189815a3655a941\"},\"headline\":\"Props React JS\",\"datePublished\":\"2023-09-02T07:22:49+00:00\",\"dateModified\":\"2023-09-02T07:22:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/\"},\"wordCount\":185,\"publisher\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/logo-reactjs.jpg\",\"articleSection\":[\"Belajar React JS\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/\",\"name\":\"Props React JS - WebHozz Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/logo-reactjs.jpg\",\"datePublished\":\"2023-09-02T07:22:49+00:00\",\"dateModified\":\"2023-09-02T07:22:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/logo-reactjs.jpg\",\"contentUrl\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/logo-reactjs.jpg\",\"width\":750,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/props-react-js\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Props React JS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/\",\"name\":\"WebHozz Blog\",\"description\":\"Kursus Web &amp; Android di Jakarta Bandung\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#organization\",\"name\":\"WebHozz\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/logo-persegi.jpg\",\"contentUrl\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/logo-persegi.jpg\",\"width\":442,\"height\":442,\"caption\":\"WebHozz\"},\"image\":{\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/#\\\/schema\\\/person\\\/c14789b713aefdff4189815a3655a941\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/www.webhozz.com\\\/blog\\\/author\\\/farry\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Props React JS - WebHozz Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.webhozz.com\/blog\/props-react-js\/","og_locale":"en_US","og_type":"article","og_title":"Props React JS - WebHozz Blog","og_description":"Props adalah argumen yang diteruskan ke komponen Rect JS. Props diteruskan ke komponen melalui atribut HTML. Props React JS Fungsi Props React JS dalam argumen","og_url":"https:\/\/www.webhozz.com\/blog\/props-react-js\/","og_site_name":"WebHozz Blog","article_published_time":"2023-09-02T07:22:49+00:00","article_modified_time":"2023-09-02T07:22:56+00:00","og_image":[{"width":750,"height":400,"url":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/12\/logo-reactjs.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/#article","isPartOf":{"@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/"},"author":{"name":"admin","@id":"https:\/\/www.webhozz.com\/blog\/#\/schema\/person\/c14789b713aefdff4189815a3655a941"},"headline":"Props React JS","datePublished":"2023-09-02T07:22:49+00:00","dateModified":"2023-09-02T07:22:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/"},"wordCount":185,"publisher":{"@id":"https:\/\/www.webhozz.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/12\/logo-reactjs.jpg","articleSection":["Belajar React JS"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/","url":"https:\/\/www.webhozz.com\/blog\/props-react-js\/","name":"Props React JS - WebHozz Blog","isPartOf":{"@id":"https:\/\/www.webhozz.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/#primaryimage"},"image":{"@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/12\/logo-reactjs.jpg","datePublished":"2023-09-02T07:22:49+00:00","dateModified":"2023-09-02T07:22:56+00:00","breadcrumb":{"@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhozz.com\/blog\/props-react-js\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/#primaryimage","url":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/12\/logo-reactjs.jpg","contentUrl":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2019\/12\/logo-reactjs.jpg","width":750,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhozz.com\/blog\/props-react-js\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhozz.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Props React JS"}]},{"@type":"WebSite","@id":"https:\/\/www.webhozz.com\/blog\/#website","url":"https:\/\/www.webhozz.com\/blog\/","name":"WebHozz Blog","description":"Kursus Web &amp; Android di Jakarta Bandung","publisher":{"@id":"https:\/\/www.webhozz.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhozz.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhozz.com\/blog\/#organization","name":"WebHozz","url":"https:\/\/www.webhozz.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhozz.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2018\/04\/logo-persegi.jpg","contentUrl":"https:\/\/www.webhozz.com\/blog\/wp-content\/uploads\/2018\/04\/logo-persegi.jpg","width":442,"height":442,"caption":"WebHozz"},"image":{"@id":"https:\/\/www.webhozz.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.webhozz.com\/blog\/#\/schema\/person\/c14789b713aefdff4189815a3655a941","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bff35e4083f3870e2f911c4437e788147d340f274268d361dd7e1cf20bebb156?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/www.webhozz.com\/blog\/author\/farry\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/posts\/12893","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/users\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/comments?post=12893"}],"version-history":[{"count":1,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/posts\/12893\/revisions"}],"predecessor-version":[{"id":12894,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/posts\/12893\/revisions\/12894"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/media\/10127"}],"wp:attachment":[{"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/media?parent=12893"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/categories?post=12893"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhozz.com\/blog\/wp-json\/wp\/v2\/tags?post=12893"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}