{"id":21243,"date":"2024-03-15T21:43:14","date_gmt":"2024-03-15T21:43:14","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/"},"modified":"2024-03-21T20:01:18","modified_gmt":"2024-03-21T20:01:18","slug":"how-to-implement-the-editing-feature-in-the-layui-data-table","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/","title":{"rendered":"How to implement the editing feature in the layui data table?"},"content":{"rendered":"<p>To enable editing functionality for the Layui data table, you need to follow these steps:<\/p>\n<ol>\n<li>Include the necessary resources for Layui in an HTML page, such as the CSS and JS files for Layui.<\/li>\n<li>HTML table<\/li>\n<li>display the table<\/li>\n<li>When the table is edited, perform the following action.<\/li>\n<li>In the event callback function, you can use AJAX requests to submit the edited data to the backend for saving.<\/li>\n<li>revise<\/li>\n<li>What you need to type in.<\/li>\n<li>modify the table<\/li>\n<li>alter the table<\/li>\n<\/ol>\n<p>The sample code is as follows:<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-meta\">&lt;!DOCTYPE <span class=\"hljs-keyword\">html<\/span>&gt;<\/span>\r\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">html<\/span> <span class=\"hljs-attr\">lang<\/span>=<span class=\"hljs-string\">\"en\"<\/span>&gt;<\/span>\r\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">head<\/span>&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">meta<\/span> <span class=\"hljs-attr\">charset<\/span>=<span class=\"hljs-string\">\"UTF-8\"<\/span>&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">meta<\/span> <span class=\"hljs-attr\">name<\/span>=<span class=\"hljs-string\">\"viewport\"<\/span> <span class=\"hljs-attr\">content<\/span>=<span class=\"hljs-string\">\"width=device-width, initial-scale=1.0\"<\/span>&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">link<\/span> <span class=\"hljs-attr\">rel<\/span>=<span class=\"hljs-string\">\"stylesheet\"<\/span> <span class=\"hljs-attr\">href<\/span>=<span class=\"hljs-string\">\"https:\/\/cdn.staticfile.org\/layui\/2.5.6\/css\/layui.min.css\"<\/span> \/&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">script<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"https:\/\/cdn.staticfile.org\/layui\/2.5.6\/layui.min.js\"<\/span>&gt;<\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">script<\/span>&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">title<\/span>&gt;<\/span>Layui\u6570\u636e\u8868\u683c\u7f16\u8f91\u529f\u80fd\u793a\u4f8b<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">title<\/span>&gt;<\/span>\r\n<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">head<\/span>&gt;<\/span>\r\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">body<\/span>&gt;<\/span>\r\n  \r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">table<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"demo\"<\/span> <span class=\"hljs-attr\">lay-filter<\/span>=<span class=\"hljs-string\">\"test\"<\/span>&gt;<\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">table<\/span>&gt;<\/span>\r\n\r\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">script<\/span>&gt;<\/span><span class=\"language-javascript\">\r\n    layui.<span class=\"hljs-title function_\">use<\/span>([<span class=\"hljs-string\">'table'<\/span>, <span class=\"hljs-string\">'form'<\/span>], <span class=\"hljs-keyword\">function<\/span>(<span class=\"hljs-params\"><\/span>){\r\n      <span class=\"hljs-keyword\">var<\/span> table = layui.<span class=\"hljs-property\">table<\/span>;\r\n\r\n      <span class=\"hljs-comment\">\/\/ \u6e32\u67d3\u6570\u636e\u8868\u683c<\/span>\r\n      table.<span class=\"hljs-title function_\">render<\/span>({\r\n        <span class=\"hljs-attr\">elem<\/span>: <span class=\"hljs-string\">'#demo'<\/span>,\r\n        <span class=\"hljs-attr\">url<\/span>: <span class=\"hljs-string\">'\/api\/data'<\/span>,\r\n        <span class=\"hljs-attr\">cols<\/span>: [[\r\n          {<span class=\"hljs-attr\">field<\/span>: <span class=\"hljs-string\">'id'<\/span>, <span class=\"hljs-attr\">title<\/span>: <span class=\"hljs-string\">'ID'<\/span>, <span class=\"hljs-attr\">edit<\/span>: <span class=\"hljs-string\">'text'<\/span>},\r\n          {<span class=\"hljs-attr\">field<\/span>: <span class=\"hljs-string\">'name'<\/span>, <span class=\"hljs-attr\">title<\/span>: <span class=\"hljs-string\">'\u59d3\u540d'<\/span>, <span class=\"hljs-attr\">edit<\/span>: <span class=\"hljs-string\">'text'<\/span>},\r\n          {<span class=\"hljs-attr\">field<\/span>: <span class=\"hljs-string\">'age'<\/span>, <span class=\"hljs-attr\">title<\/span>: <span class=\"hljs-string\">'\u5e74\u9f84'<\/span>, <span class=\"hljs-attr\">edit<\/span>: <span class=\"hljs-string\">'text'<\/span>},\r\n          {<span class=\"hljs-attr\">field<\/span>: <span class=\"hljs-string\">'email'<\/span>, <span class=\"hljs-attr\">title<\/span>: <span class=\"hljs-string\">'\u90ae\u7bb1'<\/span>, <span class=\"hljs-attr\">edit<\/span>: <span class=\"hljs-string\">'text'<\/span>},\r\n          {<span class=\"hljs-attr\">fixed<\/span>: <span class=\"hljs-string\">'right'<\/span>, <span class=\"hljs-attr\">title<\/span>:<span class=\"hljs-string\">'\u64cd\u4f5c'<\/span>, <span class=\"hljs-attr\">toolbar<\/span>: <span class=\"hljs-string\">'#barDemo'<\/span>}\r\n        ]],\r\n        <span class=\"hljs-attr\">page<\/span>: <span class=\"hljs-literal\">true<\/span>\r\n      });\r\n\r\n      <span class=\"hljs-comment\">\/\/ \u76d1\u542c\u8868\u683c\u7f16\u8f91\u4e8b\u4ef6<\/span>\r\n      table.<span class=\"hljs-title function_\">on<\/span>(<span class=\"hljs-string\">'edit(test)'<\/span>, <span class=\"hljs-keyword\">function<\/span>(<span class=\"hljs-params\">obj<\/span>){\r\n        <span class=\"hljs-keyword\">var<\/span> data = obj.<span class=\"hljs-property\">data<\/span>; <span class=\"hljs-comment\">\/\/ \u4fee\u6539\u540e\u7684\u6570\u636e<\/span>\r\n        <span class=\"hljs-keyword\">var<\/span> field = obj.<span class=\"hljs-property\">field<\/span>; <span class=\"hljs-comment\">\/\/ \u4fee\u6539\u7684\u5b57\u6bb5\u540d<\/span>\r\n        <span class=\"hljs-keyword\">var<\/span> value = obj.<span class=\"hljs-property\">value<\/span>; <span class=\"hljs-comment\">\/\/ \u4fee\u6539\u540e\u7684\u503c<\/span>\r\n\r\n        <span class=\"hljs-comment\">\/\/ \u53d1\u9001Ajax\u8bf7\u6c42\u4fdd\u5b58\u6570\u636e<\/span>\r\n        <span class=\"hljs-comment\">\/\/ ...<\/span>\r\n\r\n        <span class=\"hljs-variable language_\">console<\/span>.<span class=\"hljs-title function_\">log<\/span>(data, field, value);\r\n      });\r\n    });\r\n  <\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">script<\/span>&gt;<\/span>\r\n<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">body<\/span>&gt;<\/span>\r\n<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">html<\/span>&gt;<\/span>\r\n<\/code><\/pre>\n<p>The code above utilizes the table.render() method from Layui to render a data table, specifying the container #demo and column configuration. In the column configuration, it specifies that the ID, name, age, and email columns are editable. Then, it uses the table.on(&#8216;edit&#8217;) method from Layui to listen for table edit events and handle the edited data in the event callback function. It prints out the modified data, the field name that was modified, and the new value in the console.<\/p>\n<p>Note: The URL \/api\/data in the code above is just an example, you need to replace it with the actual URL of the backend interface. Additionally, you also need to configure other properties of the table according to your own requirements, such as pagination, sorting, etc.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To enable editing functionality for the Layui data table, you need to follow these steps: Include the necessary resources for Layui in an HTML page, such as the CSS and JS files for Layui. HTML table display the table When the table is edited, perform the following action. In the event callback function, you can [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-21243","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to implement the editing feature in the layui data table? - Blog - Silicon Cloud<\/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.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to implement the editing feature in the layui data table?\" \/>\n<meta property=\"og:description\" content=\"To enable editing functionality for the Layui data table, you need to follow these steps: Include the necessary resources for Layui in an HTML page, such as the CSS and JS files for Layui. HTML table display the table When the table is edited, perform the following action. In the event callback function, you can [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-15T21:43:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-21T20:01:18+00:00\" \/>\n<meta name=\"author\" content=\"Liam\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:site\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Liam\" \/>\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.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/\"},\"author\":{\"name\":\"Liam\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671\"},\"headline\":\"How to implement the editing feature in the layui data table?\",\"datePublished\":\"2024-03-15T21:43:14+00:00\",\"dateModified\":\"2024-03-21T20:01:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/\"},\"wordCount\":228,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/\",\"name\":\"How to implement the editing feature in the layui data table? - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2024-03-15T21:43:14+00:00\",\"dateModified\":\"2024-03-21T20:01:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to implement the editing feature in the layui data table?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"name\":\"Silicon Cloud Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\",\"name\":\"Silicon Cloud Blog\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"contentUrl\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"width\":1024,\"height\":1024,\"caption\":\"Silicon Cloud Blog\"},\"image\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\",\"https:\/\/twitter.com\/SiliCloudGlobal\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671\",\"name\":\"Liam\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8d37ed3e7f770dde8bf069ba0b4298688028c3abaacf1131742fc1352d174ebd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8d37ed3e7f770dde8bf069ba0b4298688028c3abaacf1131742fc1352d174ebd?s=96&d=mm&r=g\",\"caption\":\"Liam\"},\"sameAs\":[\"http:\/\/Wilson\"],\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/liamwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to implement the editing feature in the layui data table? - Blog - Silicon Cloud","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.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/","og_locale":"en_US","og_type":"article","og_title":"How to implement the editing feature in the layui data table?","og_description":"To enable editing functionality for the Layui data table, you need to follow these steps: Include the necessary resources for Layui in an HTML page, such as the CSS and JS files for Layui. HTML table display the table When the table is edited, perform the following action. In the event callback function, you can [&hellip;]","og_url":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2024-03-15T21:43:14+00:00","article_modified_time":"2024-03-21T20:01:18+00:00","author":"Liam","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Liam","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/"},"author":{"name":"Liam","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671"},"headline":"How to implement the editing feature in the layui data table?","datePublished":"2024-03-15T21:43:14+00:00","dateModified":"2024-03-21T20:01:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/"},"wordCount":228,"commentCount":0,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/","url":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/","name":"How to implement the editing feature in the layui data table? - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2024-03-15T21:43:14+00:00","dateModified":"2024-03-21T20:01:18+00:00","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/how-to-implement-the-editing-feature-in-the-layui-data-table\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to implement the editing feature in the layui data table?"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/blog\/#website","url":"https:\/\/www.silicloud.com\/blog\/","name":"Silicon Cloud Blog","description":"","publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.silicloud.com\/blog\/#organization","name":"Silicon Cloud Blog","url":"https:\/\/www.silicloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","contentUrl":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","width":1024,"height":1024,"caption":"Silicon Cloud Blog"},"image":{"@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SiliCloudGlobal\/","https:\/\/twitter.com\/SiliCloudGlobal"]},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671","name":"Liam","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8d37ed3e7f770dde8bf069ba0b4298688028c3abaacf1131742fc1352d174ebd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8d37ed3e7f770dde8bf069ba0b4298688028c3abaacf1131742fc1352d174ebd?s=96&d=mm&r=g","caption":"Liam"},"sameAs":["http:\/\/Wilson"],"url":"https:\/\/www.silicloud.com\/blog\/author\/liamwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/21243","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=21243"}],"version-history":[{"count":1,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/21243\/revisions"}],"predecessor-version":[{"id":55092,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/21243\/revisions\/55092"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=21243"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=21243"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=21243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}