{"id":11047,"date":"2024-03-14T13:18:23","date_gmt":"2024-03-14T13:18:23","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/"},"modified":"2025-08-04T06:58:33","modified_gmt":"2025-08-04T06:58:33","slug":"how-to-delete-table-data-in-bulk-with-layui","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/","title":{"rendered":"Layui Bulk Delete: How to Remove Table Data"},"content":{"rendered":"<p>To achieve batch deletion of table data in layui, you can follow these steps:<\/p>\n<ol>\n<li>Add a checkbox column to the table for selecting multiple data entries.<\/li>\n<li>Add an event listener to each checkbox in the checkbox list, so that when a checkbox is checked, the ID of the data is stored in an array.<\/li>\n<li>Create a delete button that, when clicked, will retrieve the array of selected data IDs and send a request to the backend for bulk deletion.<\/li>\n<\/ol>\n<p>Here is a simple example code:<\/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>&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\">title<\/span>&gt;<\/span>\u6279\u91cf\u5220\u9664\u8868\u683c\u6570\u636e<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">title<\/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.bootcdn.net\/ajax\/libs\/layui\/2.6.8\/css\/layui.css\"<\/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  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">div<\/span> <span class=\"hljs-attr\">class<\/span>=<span class=\"hljs-string\">\"layui-container\"<\/span>&gt;<\/span>\r\n    <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">button<\/span> <span class=\"hljs-attr\">class<\/span>=<span class=\"hljs-string\">\"layui-btn layui-btn-danger\"<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"deleteBtn\"<\/span>&gt;<\/span>\u6279\u91cf\u5220\u9664<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">button<\/span>&gt;<\/span>\r\n    <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">table<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"dataTable\"<\/span> <span class=\"hljs-attr\">lay-filter<\/span>=<span class=\"hljs-string\">\"dataTable\"<\/span>&gt;<\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">table<\/span>&gt;<\/span>\r\n  <span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">div<\/span>&gt;<\/span>\r\n\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.bootcdn.net\/ajax\/libs\/layui\/2.6.8\/layui.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\">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\">'layer'<\/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      <span class=\"hljs-keyword\">var<\/span> layer = layui.<span class=\"hljs-property\">layer<\/span>;\r\n\r\n      <span class=\"hljs-comment\">\/\/ \u6a21\u62df\u8868\u683c\u6570\u636e<\/span>\r\n      <span class=\"hljs-keyword\">var<\/span> data = [\r\n        {<span class=\"hljs-attr\">id<\/span>: <span class=\"hljs-number\">1<\/span>, <span class=\"hljs-attr\">name<\/span>: <span class=\"hljs-string\">'\u5f20\u4e09'<\/span>},\r\n        {<span class=\"hljs-attr\">id<\/span>: <span class=\"hljs-number\">2<\/span>, <span class=\"hljs-attr\">name<\/span>: <span class=\"hljs-string\">'\u674e\u56db'<\/span>},\r\n        {<span class=\"hljs-attr\">id<\/span>: <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-attr\">name<\/span>: <span class=\"hljs-string\">'\u738b\u4e94'<\/span>}\r\n      ];\r\n\r\n      <span class=\"hljs-comment\">\/\/ \u6e32\u67d3\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\">'#dataTable'<\/span>,\r\n        <span class=\"hljs-attr\">cols<\/span>: [[\r\n          {<span class=\"hljs-attr\">type<\/span>: <span class=\"hljs-string\">'checkbox'<\/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>},\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>}\r\n        ]],\r\n        <span class=\"hljs-attr\">data<\/span>: data\r\n      });\r\n\r\n      <span class=\"hljs-comment\">\/\/ \u76d1\u542c\u590d\u9009\u6846\u9009\u4e2d\u4e8b\u4ef6<\/span>\r\n      table.<span class=\"hljs-title function_\">on<\/span>(<span class=\"hljs-string\">'checkbox(dataTable)'<\/span>, <span class=\"hljs-keyword\">function<\/span>(<span class=\"hljs-params\">obj<\/span>) {\r\n        <span class=\"hljs-keyword\">var<\/span> checkStatus = table.<span class=\"hljs-title function_\">checkStatus<\/span>(<span class=\"hljs-string\">'dataTable'<\/span>);\r\n        <span class=\"hljs-keyword\">var<\/span> ids = checkStatus.<span class=\"hljs-property\">data<\/span>.<span class=\"hljs-title function_\">map<\/span>(<span class=\"hljs-keyword\">function<\/span>(<span class=\"hljs-params\">item<\/span>) {\r\n          <span class=\"hljs-keyword\">return<\/span> item.<span class=\"hljs-property\">id<\/span>;\r\n        });\r\n        <span class=\"hljs-variable language_\">console<\/span>.<span class=\"hljs-title function_\">log<\/span>(ids);\r\n      });\r\n\r\n      <span class=\"hljs-comment\">\/\/ \u76d1\u542c\u5220\u9664\u6309\u94ae\u70b9\u51fb\u4e8b\u4ef6<\/span>\r\n      <span class=\"hljs-variable language_\">document<\/span>.<span class=\"hljs-title function_\">getElementById<\/span>(<span class=\"hljs-string\">'deleteBtn'<\/span>).<span class=\"hljs-title function_\">addEventListener<\/span>(<span class=\"hljs-string\">'click'<\/span>, <span class=\"hljs-keyword\">function<\/span>(<span class=\"hljs-params\"><\/span>) {\r\n        <span class=\"hljs-keyword\">var<\/span> checkStatus = table.<span class=\"hljs-title function_\">checkStatus<\/span>(<span class=\"hljs-string\">'dataTable'<\/span>);\r\n        <span class=\"hljs-keyword\">var<\/span> ids = checkStatus.<span class=\"hljs-property\">data<\/span>.<span class=\"hljs-title function_\">map<\/span>(<span class=\"hljs-keyword\">function<\/span>(<span class=\"hljs-params\">item<\/span>) {\r\n          <span class=\"hljs-keyword\">return<\/span> item.<span class=\"hljs-property\">id<\/span>;\r\n        });\r\n        <span class=\"hljs-variable language_\">console<\/span>.<span class=\"hljs-title function_\">log<\/span>(<span class=\"hljs-string\">'\u8981\u5220\u9664\u7684id\u6570\u7ec4\uff1a'<\/span>, ids);\r\n        <span class=\"hljs-comment\">\/\/ \u53d1\u9001\u8bf7\u6c42\u7ed9\u540e\u7aef\u8fdb\u884c\u6279\u91cf\u5220\u9664\u64cd\u4f5c<\/span>\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>In the example code above, we capture the selected data ID array by monitoring the selection event of the checkbox, and then perform corresponding operations using this array when the delete button is clicked. Feel free to modify and extend the code according to your needs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To achieve batch deletion of table data in layui, you can follow these steps: Add a checkbox column to the table for selecting multiple data entries. Add an event listener to each checkbox in the checkbox list, so that when a checkbox is checked, the ID of the data is stored in an array. Create [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[8051,14087,360,14086,326],"class_list":["post-11047","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-bulk-operations","tag-frontend-framework","tag-layui","tag-table-data-deletion","tag-web-development"],"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>Layui Bulk Delete: How to Remove Table Data - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"Step-by-step guide to implement bulk table data deletion using Layui checkboxes and backend requests.\" \/>\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-delete-table-data-in-bulk-with-layui\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Layui Bulk Delete: How to Remove Table Data\" \/>\n<meta property=\"og:description\" content=\"Step-by-step guide to implement bulk table data deletion using Layui checkboxes and backend requests.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/\" \/>\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-14T13:18:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-04T06:58:33+00:00\" \/>\n<meta name=\"author\" content=\"Ava Mitchell\" \/>\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=\"Ava Mitchell\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\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-delete-table-data-in-bulk-with-layui\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/\"},\"author\":{\"name\":\"Ava Mitchell\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/a3e2658c2cb9fb2be95ae0a8861f4a64\"},\"headline\":\"Layui Bulk Delete: How to Remove Table Data\",\"datePublished\":\"2024-03-14T13:18:23+00:00\",\"dateModified\":\"2025-08-04T06:58:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/\"},\"wordCount\":139,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"keywords\":[\"bulk operations\",\"frontend framework\",\"Layui\",\"table data deletion\",\"web development\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/\",\"name\":\"Layui Bulk Delete: How to Remove Table Data - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2024-03-14T13:18:23+00:00\",\"dateModified\":\"2025-08-04T06:58:33+00:00\",\"description\":\"Step-by-step guide to implement bulk table data deletion using Layui checkboxes and backend requests.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Layui Bulk Delete: How to Remove Table Data\"}]},{\"@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\/a3e2658c2cb9fb2be95ae0a8861f4a64\",\"name\":\"Ava Mitchell\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/15c63cd0564b4a2e07d611bcdffa296f6ea80e8db07c3091f43a84010514899d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/15c63cd0564b4a2e07d611bcdffa296f6ea80e8db07c3091f43a84010514899d?s=96&d=mm&r=g\",\"caption\":\"Ava Mitchell\"},\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/avamitchell\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Layui Bulk Delete: How to Remove Table Data - Blog - Silicon Cloud","description":"Step-by-step guide to implement bulk table data deletion using Layui checkboxes and backend requests.","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-delete-table-data-in-bulk-with-layui\/","og_locale":"en_US","og_type":"article","og_title":"Layui Bulk Delete: How to Remove Table Data","og_description":"Step-by-step guide to implement bulk table data deletion using Layui checkboxes and backend requests.","og_url":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2024-03-14T13:18:23+00:00","article_modified_time":"2025-08-04T06:58:33+00:00","author":"Ava Mitchell","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Ava Mitchell","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/"},"author":{"name":"Ava Mitchell","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/a3e2658c2cb9fb2be95ae0a8861f4a64"},"headline":"Layui Bulk Delete: How to Remove Table Data","datePublished":"2024-03-14T13:18:23+00:00","dateModified":"2025-08-04T06:58:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/"},"wordCount":139,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"keywords":["bulk operations","frontend framework","Layui","table data deletion","web development"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/","url":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/","name":"Layui Bulk Delete: How to Remove Table Data - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2024-03-14T13:18:23+00:00","dateModified":"2025-08-04T06:58:33+00:00","description":"Step-by-step guide to implement bulk table data deletion using Layui checkboxes and backend requests.","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/how-to-delete-table-data-in-bulk-with-layui\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Layui Bulk Delete: How to Remove Table Data"}]},{"@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\/a3e2658c2cb9fb2be95ae0a8861f4a64","name":"Ava Mitchell","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/15c63cd0564b4a2e07d611bcdffa296f6ea80e8db07c3091f43a84010514899d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/15c63cd0564b4a2e07d611bcdffa296f6ea80e8db07c3091f43a84010514899d?s=96&d=mm&r=g","caption":"Ava Mitchell"},"url":"https:\/\/www.silicloud.com\/blog\/author\/avamitchell\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/11047","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\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=11047"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/11047\/revisions"}],"predecessor-version":[{"id":154814,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/11047\/revisions\/154814"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=11047"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=11047"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=11047"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}