{"id":1655,"date":"2018-12-03T10:49:38","date_gmt":"2018-12-03T09:49:38","guid":{"rendered":"https:\/\/www.thecodecampus.de\/blog\/?p=1655"},"modified":"2023-12-20T20:16:29","modified_gmt":"2023-12-20T19:16:29","slug":"nested-forms-in-angular","status":"publish","type":"post","link":"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/","title":{"rendered":"Nested Forms in Angular"},"content":{"rendered":"\r\n<p>This Article is based on Kara Ericksons talk about &#8220;Angular Forms&#8221; at the Angular Connect 2017.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-has-aspect-ratio wp-embed-aspect-16-9\">\r\n<div class=\"wp-block-embed__wrapper\">https:\/\/www.youtube.com\/watch?v=CD_t3m2WMM8&amp;amp=&amp;index=15<\/div>\r\n<\/figure>\r\n\r\n\r\n\r\n<p>I am going to give you a quick example to get started with nested Forms.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\" id=\"firstHeading\">TL;DR<\/h2>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Extract the HTML in new Component<\/li>\r\n<li>Inject <a href=\"https:\/\/angular.io\/api\/forms\/ControlContainer\">ControlContainer<\/a> in new Component<\/li>\r\n<li>Access the Form via ControlContainer.control<\/li>\r\n<li>pass the parent Form into the nested Component with the [formGroup] directive<\/li>\r\n<li><a href=\"https:\/\/stackblitz.com\/edit\/angular-tcc-nested-forms-basic\">StackBlitz Example<\/a><\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Basic Form<\/h2>\r\n\r\n<pre class=\"lang:xhtml decode:true  \">&lt;form [formGroup]=\"form\" (ngSubmit)=\"onSubmit()\"&gt;\r\n\r\n  &lt;p&gt;General:&lt;\/p&gt;\r\n  &lt;label for=\"name\"&gt;Name: &lt;\/label&gt;\r\n  &lt;input id=\"name\" type=\"text\" formControlName=\"name\"&gt;\r\n\r\n  &lt;p&gt;Address:&lt;\/p&gt;\r\n  &lt;label for=\"street\"&gt;Street: &lt;\/label&gt;\r\n  &lt;input id=\"street\" type=\"text\" formControlName=\"street\"&gt; &lt;br&gt;\r\n  &lt;label for=\"zip\"&gt;ZIP: &lt;\/label&gt;\r\n  &lt;input id=\"zip\" type=\"text\" formControlName=\"zip\"&gt; &lt;br&gt;\r\n  &lt;label for=\"city\"&gt;City: &lt;\/label&gt;\r\n  &lt;input id=\"city\" type=\"text\" formControlName=\"city\"&gt; &lt;br&gt;\r\n  \r\n  &lt;button type=\"submit\"&gt;Save&lt;\/button&gt;\r\n&lt;\/form&gt;<\/pre>\r\n\r\n<p>We have a classic form to enter the name and the address of a person. Now we want to reuse the address block in other forms.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Nested Forms<\/h2>\r\n\r\n\r\n\r\n<p>Extracting the Form in a new Component is quite basic. We move the needed HTML into a new Component and wrap it in an &lt;ng-container [formGroup]=&#8221;controlContainer.control&#8221;&gt;.<\/p>\r\n\r\n<pre class=\"lang:xhtml decode:true  \" title=\"address.component.html\">&lt;ng-container [formGroup]=\"controlContainer.control\"&gt;\r\n  &lt;p&gt;Address:&lt;\/p&gt;\r\n  &lt;label for=\"street\"&gt;Street: &lt;\/label&gt;\r\n  &lt;input id=\"street\" type=\"text\" formControlName=\"street\"&gt; &lt;br&gt;\r\n  &lt;label for=\"zip\"&gt;ZIP: &lt;\/label&gt;\r\n  &lt;input id=\"zip\" type=\"text\" formControlName=\"zip\"&gt; &lt;br&gt;\r\n  &lt;label for=\"city\"&gt;City: &lt;\/label&gt;\r\n  &lt;input id=\"city\" type=\"text\" formControlName=\"city\"&gt; &lt;br&gt;\r\n&lt;\/ng-container&gt;<\/pre>\r\n\r\n<p>In the Component class we need inject the ControlContainer, this will give us the access to the given FormGroup from the parent.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>import { Component, OnInit } from '@angular\/core';\r\nimport { ControlContainer } from '@angular\/forms';\r\n\r\n@Component({\r\n  selector: 'app-form-address',\r\n  templateUrl: '.\/address.component.html',\r\n  styleUrls: ['.\/address.component.css']\r\n})\r\nexport class AddressComponent implements OnInit {\r\n  constructor(private controlContainer: ControlContainer) { }\r\n\r\n  ngOnInit() {\r\n  }\r\n}<\/code><\/pre>\r\n\r\n\r\n\r\n<p>In the parent component, we need to replace the old HTML with the new component tag.<\/p>\r\n\r\n<pre class=\"lang:xhtml decode:true  \" title=\"app.component.html\">&lt;app-form-address [formGroup]=\"form\"&gt;&lt;\/app-form-address&gt;<\/pre>\r\n\r\n<p>Don&#8217;t forget to add the [formGroup] Attribute and pass in a valid FormGroup.<\/p>\r\n\r\n\r\n\r\n<p>If you try the <a href=\"https:\/\/stackblitz.com\/edit\/angular-tcc-nested-forms-basic\">StackBlitz example<\/a>, you can see that after you press &#8220;save&#8221; the form with the nested Form results will be printed to the screen.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Troubleshooting<\/h2>\r\n\r\n\r\n\r\n<p><strong>Error:<\/strong><br \/>ERROR Error: formControlName must be used with a parent formGroup directive. You&#8217;ll want to add a formGroup<br \/>directive and pass it an existing FormGroup instance (you can create one in your class).<br \/><strong>Solution:<\/strong><br \/>Add a [formGroup] as attribute to your nested form component call.<\/p>\r\n\r\n\r\n\r\n<p><strong>Error:<\/strong><br \/>ERROR TypeError: Cannot read property &#8216;get&#8217; of undefined<br \/><strong>Solution:<\/strong><br \/>Inject the ControlContainer to the nested form component.<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>This Article is based on Kara Ericksons talk about &#8220;Angular Forms&#8221; at the Angular Connect 2017. https:\/\/www.youtube.com\/watch?v=CD_t3m2WMM8&amp;amp=&amp;index=15 I am going to give you a quick example to get started with nested Forms. TL;DR Extract the HTML in new Component Inject ControlContainer in new Component Access the Form via ControlContainer.control pass the parent Form into the [&#8230;]<br \/><a class=\"meta-big\" href=\"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/\"> READ MORE<\/a><\/p>\n","protected":false},"author":29,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[73],"tags":[74,101],"class_list":["post-1655","post","type-post","status-publish","format-standard","hentry","category-angular","tag-angular-2","tag-forms"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Nested Forms in Angular - Web Development Blog<\/title>\n<meta name=\"description\" content=\"Master nested forms in Angular effortlessly! Elevate UI design and user interactions seamlessly. Optimize your development workflow. Dive in now!\" \/>\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.thecodecampus.de\/blog\/nested-forms-in-angular\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Nested Forms in Angular - Web Development Blog\" \/>\n<meta property=\"og:description\" content=\"Master nested forms in Angular effortlessly! Elevate UI design and user interactions seamlessly. Optimize your development workflow. Dive in now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Development tips and tricks - theCodeCampus Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-12-03T09:49:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-20T19:16:29+00:00\" \/>\n<meta name=\"author\" content=\"theCodeCampus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"theCodeCampus\" \/>\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.thecodecampus.de\\\/blog\\\/nested-forms-in-angular\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/nested-forms-in-angular\\\/\"},\"author\":{\"name\":\"theCodeCampus\",\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/#\\\/schema\\\/person\\\/276bbda2f8da73154f22fb652201cfbc\"},\"headline\":\"Nested Forms in Angular\",\"datePublished\":\"2018-12-03T09:49:38+00:00\",\"dateModified\":\"2023-12-20T19:16:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/nested-forms-in-angular\\\/\"},\"wordCount\":284,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/#organization\"},\"keywords\":[\"Angular 2\",\"Forms\"],\"articleSection\":[\"Angular\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/nested-forms-in-angular\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/nested-forms-in-angular\\\/\",\"url\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/nested-forms-in-angular\\\/\",\"name\":\"Nested Forms in Angular - Web Development Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/#website\"},\"datePublished\":\"2018-12-03T09:49:38+00:00\",\"dateModified\":\"2023-12-20T19:16:29+00:00\",\"description\":\"Master nested forms in Angular effortlessly! Elevate UI design and user interactions seamlessly. Optimize your development workflow. Dive in now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/nested-forms-in-angular\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/nested-forms-in-angular\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/nested-forms-in-angular\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Nested Forms in Angular\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/\",\"name\":\"Web Development tips and tricks - theCodeCampus Blog\",\"description\":\"Tips, tricks, and experiences about developing web and mobile applications with Angular, TypeScript, and Testing.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/#organization\",\"name\":\"theCodeCampus\",\"url\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/TCC-Logo-Bildmarke-quadratisch.jpg\",\"contentUrl\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/TCC-Logo-Bildmarke-quadratisch.jpg\",\"width\":156,\"height\":156,\"caption\":\"theCodeCampus\"},\"image\":{\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/#\\\/schema\\\/person\\\/276bbda2f8da73154f22fb652201cfbc\",\"name\":\"theCodeCampus\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/TCC-Logo-Bildmarke-quadratisch-96x96.jpg\",\"url\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/TCC-Logo-Bildmarke-quadratisch-96x96.jpg\",\"contentUrl\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/TCC-Logo-Bildmarke-quadratisch-96x96.jpg\",\"caption\":\"theCodeCampus\"},\"description\":\"Our knowledge is not simply gained through reading - it is trained, tested and constantly being expanded. Because first and foremost, we are all developers at W11K. The know-how that we acquire here as developers, consultants and information architects flows immediately into our training courses and articles for theCodeCampus.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/showcase\\\/thecodecampus\\\/\"],\"url\":\"https:\\\/\\\/www.thecodecampus.de\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Nested Forms in Angular - Web Development Blog","description":"Master nested forms in Angular effortlessly! Elevate UI design and user interactions seamlessly. Optimize your development workflow. Dive in now!","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.thecodecampus.de\/blog\/nested-forms-in-angular\/","og_locale":"en_US","og_type":"article","og_title":"Nested Forms in Angular - Web Development Blog","og_description":"Master nested forms in Angular effortlessly! Elevate UI design and user interactions seamlessly. Optimize your development workflow. Dive in now!","og_url":"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/","og_site_name":"Web Development tips and tricks - theCodeCampus Blog","article_published_time":"2018-12-03T09:49:38+00:00","article_modified_time":"2023-12-20T19:16:29+00:00","author":"theCodeCampus","twitter_card":"summary_large_image","twitter_misc":{"Written by":"theCodeCampus","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/#article","isPartOf":{"@id":"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/"},"author":{"name":"theCodeCampus","@id":"https:\/\/www.thecodecampus.de\/blog\/#\/schema\/person\/276bbda2f8da73154f22fb652201cfbc"},"headline":"Nested Forms in Angular","datePublished":"2018-12-03T09:49:38+00:00","dateModified":"2023-12-20T19:16:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/"},"wordCount":284,"commentCount":1,"publisher":{"@id":"https:\/\/www.thecodecampus.de\/blog\/#organization"},"keywords":["Angular 2","Forms"],"articleSection":["Angular"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/","url":"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/","name":"Nested Forms in Angular - Web Development Blog","isPartOf":{"@id":"https:\/\/www.thecodecampus.de\/blog\/#website"},"datePublished":"2018-12-03T09:49:38+00:00","dateModified":"2023-12-20T19:16:29+00:00","description":"Master nested forms in Angular effortlessly! Elevate UI design and user interactions seamlessly. Optimize your development workflow. Dive in now!","breadcrumb":{"@id":"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.thecodecampus.de\/blog\/nested-forms-in-angular\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.thecodecampus.de\/blog\/"},{"@type":"ListItem","position":2,"name":"Nested Forms in Angular"}]},{"@type":"WebSite","@id":"https:\/\/www.thecodecampus.de\/blog\/#website","url":"https:\/\/www.thecodecampus.de\/blog\/","name":"Web Development tips and tricks - theCodeCampus Blog","description":"Tips, tricks, and experiences about developing web and mobile applications with Angular, TypeScript, and Testing.","publisher":{"@id":"https:\/\/www.thecodecampus.de\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.thecodecampus.de\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.thecodecampus.de\/blog\/#organization","name":"theCodeCampus","url":"https:\/\/www.thecodecampus.de\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.thecodecampus.de\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.thecodecampus.de\/blog\/wp-content\/uploads\/2024\/01\/TCC-Logo-Bildmarke-quadratisch.jpg","contentUrl":"https:\/\/www.thecodecampus.de\/blog\/wp-content\/uploads\/2024\/01\/TCC-Logo-Bildmarke-quadratisch.jpg","width":156,"height":156,"caption":"theCodeCampus"},"image":{"@id":"https:\/\/www.thecodecampus.de\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.thecodecampus.de\/blog\/#\/schema\/person\/276bbda2f8da73154f22fb652201cfbc","name":"theCodeCampus","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.thecodecampus.de\/blog\/wp-content\/uploads\/2024\/01\/TCC-Logo-Bildmarke-quadratisch-96x96.jpg","url":"https:\/\/www.thecodecampus.de\/blog\/wp-content\/uploads\/2024\/01\/TCC-Logo-Bildmarke-quadratisch-96x96.jpg","contentUrl":"https:\/\/www.thecodecampus.de\/blog\/wp-content\/uploads\/2024\/01\/TCC-Logo-Bildmarke-quadratisch-96x96.jpg","caption":"theCodeCampus"},"description":"Our knowledge is not simply gained through reading - it is trained, tested and constantly being expanded. Because first and foremost, we are all developers at W11K. The know-how that we acquire here as developers, consultants and information architects flows immediately into our training courses and articles for theCodeCampus.","sameAs":["https:\/\/www.linkedin.com\/showcase\/thecodecampus\/"],"url":"https:\/\/www.thecodecampus.de\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/posts\/1655","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/users\/29"}],"replies":[{"embeddable":true,"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/comments?post=1655"}],"version-history":[{"count":30,"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/posts\/1655\/revisions"}],"predecessor-version":[{"id":2724,"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/posts\/1655\/revisions\/2724"}],"wp:attachment":[{"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/media?parent=1655"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/categories?post=1655"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.thecodecampus.de\/blog\/wp-json\/wp\/v2\/tags?post=1655"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}