{"id":20854,"date":"2015-06-26T11:55:48","date_gmt":"2015-06-26T06:25:48","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=20854"},"modified":"2017-08-03T13:19:58","modified_gmt":"2017-08-03T07:49:58","slug":"immediate-and-non-immediate-model-updates-in-angularjs","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/","title":{"rendered":"Immediate and non-immediate model updates in AngularJS"},"content":{"rendered":"<p>In <a title=\"Angular development\" href=\"http:\/\/www.tothenew.com\/front-end-angularjs-development\">AngularJS<\/a>, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using &#8220;debounce&#8221; object in <a href=\"http:\/\/www.tothenew.com\/blog\/explicitly-providing-ng-model-to-dom-elements\/\">&#8220;ng-model-options&#8221;<\/a> directive, which is known as &#8220;non-immediate model updates&#8221;.<\/p>\n<ol>\n<li>\n<h3>Immediate Model updates<\/h3>\n<p>[html]<br \/>\n&lt;div ng-app=&quot;MyApp&quot;&gt;<br \/>\n\t&lt;input type=&quot;text&quot; ng-model=&quot;message&quot;&gt;<br \/>\n\t&lt;p&gt;<br \/>\n\t\t{{ message }}<br \/>\n\t&lt;\/p&gt;<br \/>\n&lt;\/div&gt;<br \/>\n[\/html]<\/p>\n<p>In the example above the value of &#8220;message&#8221; immediately updates itself (<a title=\"Frontend Interfaces with AngularJS\" href=\"http:\/\/www.tothenew.com\/blog\/building-intuitive-frontend-interfaces-with-angularjs\/\">default behavior of AngularJS<\/a>) on the change of value in the text box.<\/li>\n<li>\n<h3>Non-immediate model updates<\/h3>\n<p>You can use &#8220;debounce&#8221; to delay the model update\/validate with the &#8220;ng-model-options&#8221; directive.<\/p>\n<p>[html]<br \/>\n&lt;div ng-app=&quot;MyApp&quot;&gt;<br \/>\n\t&lt;input type=&quot;text&quot; ng-model=&quot;message&quot; ng-model-options=&quot;{ debounce : 1000 }&quot;&gt;<br \/>\n\t&lt;p&gt;<br \/>\n\t\t{{ message }}<br \/>\n\t&lt;\/p&gt;<br \/>\n&lt;\/div&gt;<br \/>\n[\/html]<\/p>\n<p>In the example above we added a directive &#8220;ng-model-options&#8221; in the textbox and then a key &#8220;debounce&#8221; in it with value &#8220;1000&#8221; ms. So now it will wait for 1 sec before updating its value according to the text in the box.<\/p>\n<p>We can also set custom debounce for each event using an object in &#8220;debounce&#8221;.<\/p>\n<p>[html]<br \/>\n&lt;div ng-app=&quot;MyApp&quot;&gt;<br \/>\n\t&lt;input type=&quot;text&quot; ng-model=&quot;message&quot; ng-model-options=&quot;{ updateOn: &#8216;default blur&#8217;, debounce : {default: 1000, blur: 0} }&quot;&gt;<br \/>\n\t&lt;p&gt;<br \/>\n\t\t{{ message }}<br \/>\n\t&lt;\/p&gt;<br \/>\n&lt;\/div&gt;<br \/>\n[\/html]<\/p>\n<p>In the example above value of &#8220;message&#8221; will update with a delay of 1 second from the change in the textbox or it will change immediately in case the textbox losses focus.<\/li>\n<\/ol>\n<p>Hope this helps !!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using &#8220;debounce&#8221; object in &#8220;ng-model-options&#8221; directive, which is known as &#8220;non-immediate model updates&#8221;. Immediate Model updates [html] &lt;div ng-app=&quot;MyApp&quot;&gt; &lt;input type=&quot;text&quot; ng-model=&quot;message&quot;&gt; [&hellip;]<\/p>\n","protected":false},"author":103,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":13,"footnotes":""},"categories":[1439,3429],"tags":[3955,955,4697,1857,1859,1858,1860],"class_list":["post-20854","post","type-post","status-publish","format-standard","hentry","category-angular","category-front-end-development","tag-angular-development","tag-angularjs","tag-angularjs-development-company","tag-immediate","tag-model","tag-non-immediate","tag-updates"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using &quot;debounce&quot; object in &quot;ng-model-options&quot; directive, which is known as &quot;non-immediate model updates&quot;. Immediate Model updates [html]\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Dhanendra Kumar\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Immediate and non-immediate model updates in AngularJS | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using &quot;debounce&quot; object in &quot;ng-model-options&quot; directive, which is known as &quot;non-immediate model updates&quot;. Immediate Model updates [html]\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Immediate and non-immediate model updates in AngularJS | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using &quot;debounce&quot; object in &quot;ng-model-options&quot; directive, which is known as &quot;non-immediate model updates&quot;. Immediate Model updates [html]\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/#article\",\"name\":\"Immediate and non-immediate model updates in AngularJS | TO THE NEW Blog\",\"headline\":\"Immediate and non-immediate model updates in AngularJS\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/dhanendra\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-06-26T11:55:48+05:30\",\"dateModified\":\"2017-08-03T13:19:58+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/#webpage\"},\"articleSection\":\"AngularJS, Front End Development, angular development, AngularJS, AngularJS Development Company, immediate, model, non-immediate, updates\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/angular\\\/#listItem\",\"name\":\"AngularJS\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/angular\\\/#listItem\",\"position\":2,\"name\":\"AngularJS\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/angular\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/#listItem\",\"name\":\"Immediate and non-immediate model updates in AngularJS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/#listItem\",\"position\":3,\"name\":\"Immediate and non-immediate model updates in AngularJS\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/angular\\\/#listItem\",\"name\":\"AngularJS\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/dhanendra\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/dhanendra\\\/\",\"name\":\"Dhanendra Kumar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e38b1be8c8b87fecb8f9eb06a23f1bfbfd5cacc470e360119e9584489f2771b?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Dhanendra Kumar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/\",\"name\":\"Immediate and non-immediate model updates in AngularJS | TO THE NEW Blog\",\"description\":\"In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using \\\"debounce\\\" object in \\\"ng-model-options\\\" directive, which is known as \\\"non-immediate model updates\\\". Immediate Model updates [html]\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/immediate-and-non-immediate-model-updates-in-angularjs\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/dhanendra\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/dhanendra\\\/#author\"},\"datePublished\":\"2015-06-26T11:55:48+05:30\",\"dateModified\":\"2017-08-03T13:19:58+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Immediate and non-immediate model updates in AngularJS | TO THE NEW Blog","description":"In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using \"debounce\" object in \"ng-model-options\" directive, which is known as \"non-immediate model updates\". Immediate Model updates [html]","canonical_url":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/#article","name":"Immediate and non-immediate model updates in AngularJS | TO THE NEW Blog","headline":"Immediate and non-immediate model updates in AngularJS","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/dhanendra\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"datePublished":"2015-06-26T11:55:48+05:30","dateModified":"2017-08-03T13:19:58+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/#webpage"},"articleSection":"AngularJS, Front End Development, angular development, AngularJS, AngularJS Development Company, immediate, model, non-immediate, updates"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.tothenew.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/angular\/#listItem","name":"AngularJS"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/angular\/#listItem","position":2,"name":"AngularJS","item":"https:\/\/www.tothenew.com\/blog\/category\/angular\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/#listItem","name":"Immediate and non-immediate model updates in AngularJS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/#listItem","position":3,"name":"Immediate and non-immediate model updates in AngularJS","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/angular\/#listItem","name":"AngularJS"}}]},{"@type":"Organization","@id":"https:\/\/www.tothenew.com\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/www.tothenew.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.tothenew.com\/blog\/author\/dhanendra\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/dhanendra\/","name":"Dhanendra Kumar","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/4e38b1be8c8b87fecb8f9eb06a23f1bfbfd5cacc470e360119e9584489f2771b?s=96&d=mm&r=g","width":96,"height":96,"caption":"Dhanendra Kumar"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/","name":"Immediate and non-immediate model updates in AngularJS | TO THE NEW Blog","description":"In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using \"debounce\" object in \"ng-model-options\" directive, which is known as \"non-immediate model updates\". Immediate Model updates [html]","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/dhanendra\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/dhanendra\/#author"},"datePublished":"2015-06-26T11:55:48+05:30","dateModified":"2017-08-03T13:19:58+05:30"},{"@type":"WebSite","@id":"https:\/\/www.tothenew.com\/blog\/#website","url":"https:\/\/www.tothenew.com\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Immediate and non-immediate model updates in AngularJS | TO THE NEW Blog","og:description":"In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using &quot;debounce&quot; object in &quot;ng-model-options&quot; directive, which is known as &quot;non-immediate model updates&quot;. Immediate Model updates [html]","og:url":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Immediate and non-immediate model updates in AngularJS | TO THE NEW Blog","twitter:description":"In AngularJS, immediate model updates is a default behavior but if we want to persist value in the object after a certain time period has elapsed then we can achieve the same by using &quot;debounce&quot; object in &quot;ng-model-options&quot; directive, which is known as &quot;non-immediate model updates&quot;. Immediate Model updates [html]","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"20854","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 07:19:01","updated":"2024-02-29 10:28:56","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\/category\/angular\/\" title=\"AngularJS\">AngularJS<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tImmediate and non-immediate model updates in AngularJS\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"AngularJS","link":"https:\/\/www.tothenew.com\/blog\/category\/angular\/"},{"label":"Immediate and non-immediate model updates in AngularJS","link":"https:\/\/www.tothenew.com\/blog\/immediate-and-non-immediate-model-updates-in-angularjs\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/20854","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/103"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=20854"}],"version-history":[{"count":0,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/20854\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=20854"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=20854"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=20854"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}