{"id":25546,"date":"2024-03-16T05:10:48","date_gmt":"2024-03-16T05:10:48","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/"},"modified":"2024-03-22T06:26:07","modified_gmt":"2024-03-22T06:26:07","slug":"detailed-explanation-of-how-to-use-jqgrid","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/","title":{"rendered":"Detailed explanation of how to use JqGrid"},"content":{"rendered":"<p>JqGrid is a table plugin based on jQuery that can assist developers in quickly building powerful tables and data display interfaces. Below is a detailed explanation of how to use JqGrid.<\/p>\n<ol>\n<li>Include the necessary files: Add the jQuery library, JqGrid plugin file, and required style files to the HTML page.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">script<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"https:\/\/code.jquery.com\/jquery-3.5.1.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\">script<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"https:\/\/cdn.jsdelivr.net\/npm\/free-jqgrid@4.15.6\/dist\/jquery.jqgrid.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\">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.jsdelivr.net\/npm\/free-jqgrid@4.15.6\/dist\/css\/ui.jqgrid.min.css\"<\/span>&gt;<\/span>\r\n<\/code><\/pre>\n<ol>\n<li>Define an HTML table container: Define a div container in an HTML page for displaying tables.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">div<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"gridContainer\"<\/span>&gt;<\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">div<\/span>&gt;<\/span>\r\n<\/code><\/pre>\n<ol>\n<li>jQuery is a fast and concise JavaScript library.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>$(<span class=\"hljs-keyword\">function<\/span>(<span class=\"hljs-params\"><\/span>) {\r\n  $(<span class=\"hljs-string\">\"#gridContainer\"<\/span>).<span class=\"hljs-title function_\">jqGrid<\/span>({\r\n    <span class=\"hljs-comment\">\/\/ \u8868\u683c\u914d\u7f6e\u9009\u9879<\/span>\r\n    <span class=\"hljs-attr\">url<\/span>: <span class=\"hljs-string\">\"data.json\"<\/span>, <span class=\"hljs-comment\">\/\/ \u540e\u53f0\u6570\u636e\u63a5\u53e3<\/span>\r\n    <span class=\"hljs-attr\">datatype<\/span>: <span class=\"hljs-string\">\"json\"<\/span>, <span class=\"hljs-comment\">\/\/ \u6570\u636e\u7c7b\u578b<\/span>\r\n    <span class=\"hljs-attr\">colModel<\/span>: [ <span class=\"hljs-comment\">\/\/ \u5217\u5b9a\u4e49<\/span>\r\n      {<span class=\"hljs-attr\">label<\/span>: <span class=\"hljs-string\">\"\u59d3\u540d\"<\/span>, <span class=\"hljs-attr\">name<\/span>: <span class=\"hljs-string\">\"name\"<\/span>},\r\n      {<span class=\"hljs-attr\">label<\/span>: <span class=\"hljs-string\">\"\u5e74\u9f84\"<\/span>, <span class=\"hljs-attr\">name<\/span>: <span class=\"hljs-string\">\"age\"<\/span>},\r\n      {<span class=\"hljs-attr\">label<\/span>: <span class=\"hljs-string\">\"\u6027\u522b\"<\/span>, <span class=\"hljs-attr\">name<\/span>: <span class=\"hljs-string\">\"gender\"<\/span>}\r\n    ],\r\n    <span class=\"hljs-attr\">rowNum<\/span>: <span class=\"hljs-number\">10<\/span>, <span class=\"hljs-comment\">\/\/ \u6bcf\u9875\u663e\u793a\u7684\u8bb0\u5f55\u6570<\/span>\r\n    <span class=\"hljs-attr\">rowList<\/span>: [<span class=\"hljs-number\">10<\/span>, <span class=\"hljs-number\">20<\/span>, <span class=\"hljs-number\">30<\/span>], <span class=\"hljs-comment\">\/\/ \u6bcf\u9875\u663e\u793a\u8bb0\u5f55\u6570\u9009\u9879<\/span>\r\n    <span class=\"hljs-attr\">pager<\/span>: <span class=\"hljs-string\">\"#gridPager\"<\/span>, <span class=\"hljs-comment\">\/\/ \u5206\u9875\u680f<\/span>\r\n    <span class=\"hljs-attr\">height<\/span>: <span class=\"hljs-number\">400<\/span>, <span class=\"hljs-comment\">\/\/ \u8868\u683c\u9ad8\u5ea6<\/span>\r\n    <span class=\"hljs-attr\">autowidth<\/span>: <span class=\"hljs-literal\">true<\/span>, <span class=\"hljs-comment\">\/\/ \u81ea\u52a8\u8c03\u6574\u5217\u5bbd<\/span>\r\n    <span class=\"hljs-attr\">caption<\/span>: <span class=\"hljs-string\">\"\u7528\u6237\u5217\u8868\"<\/span> <span class=\"hljs-comment\">\/\/ \u8868\u683c\u6807\u9898<\/span>\r\n  });\r\n});\r\n<\/code><\/pre>\n<ol>\n<li>Load data: By setting the options of url and datatype, data provided by the server can be loaded.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>$(<span class=\"hljs-string\">\"#gridContainer\"<\/span>).<span class=\"hljs-title function_\">jqGrid<\/span>(<span class=\"hljs-string\">\"setGridParam\"<\/span>, {<span class=\"hljs-attr\">url<\/span>: <span class=\"hljs-string\">\"data.json\"<\/span>, <span class=\"hljs-attr\">datatype<\/span>: <span class=\"hljs-string\">\"json\"<\/span>}).<span class=\"hljs-title function_\">trigger<\/span>(<span class=\"hljs-string\">\"reloadGrid\"<\/span>);\r\n<\/code><\/pre>\n<ol>\n<li>Define other operations: You can define other operations such as sorting, filtering, and pagination using the methods provided by JqGrid.<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>$(<span class=\"hljs-string\">\"#gridContainer\"<\/span>).<span class=\"hljs-title function_\">jqGrid<\/span>(<span class=\"hljs-string\">\"sortGrid\"<\/span>, <span class=\"hljs-string\">\"name\"<\/span>, <span class=\"hljs-literal\">true<\/span>); <span class=\"hljs-comment\">\/\/ \u6839\u636e\u59d3\u540d\u6392\u5e8f\uff08\u5347\u5e8f\uff09<\/span>\r\n$(<span class=\"hljs-string\">\"#gridContainer\"<\/span>).<span class=\"hljs-title function_\">jqGrid<\/span>(<span class=\"hljs-string\">\"filterToolbar\"<\/span>, {<span class=\"hljs-attr\">searchOnEnter<\/span>: <span class=\"hljs-literal\">false<\/span>}); <span class=\"hljs-comment\">\/\/ \u663e\u793a\u7b5b\u9009\u5de5\u5177\u680f<\/span>\r\n$(<span class=\"hljs-string\">\"#gridContainer\"<\/span>).<span class=\"hljs-title function_\">jqGrid<\/span>(<span class=\"hljs-string\">\"navGrid\"<\/span>, <span class=\"hljs-string\">\"#gridPager\"<\/span>, {<span class=\"hljs-attr\">edit<\/span>: <span class=\"hljs-literal\">false<\/span>, <span class=\"hljs-attr\">add<\/span>: <span class=\"hljs-literal\">false<\/span>, <span class=\"hljs-attr\">del<\/span>: <span class=\"hljs-literal\">false<\/span>}); <span class=\"hljs-comment\">\/\/ \u663e\u793a\u5bfc\u822a\u680f\uff08\u7f16\u8f91\u3001\u65b0\u589e\u3001\u5220\u9664\u64cd\u4f5c\uff09<\/span>\r\n<\/code><\/pre>\n<p>This is a detailed explanation of how to use JqGrid. By simply configuring and operating it, you can achieve a powerful table display interface.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>JqGrid is a table plugin based on jQuery that can assist developers in quickly building powerful tables and data display interfaces. Below is a detailed explanation of how to use JqGrid. Include the necessary files: Add the jQuery library, JqGrid plugin file, and required style files to the HTML page. &lt;script src=&#8221;https:\/\/code.jquery.com\/jquery-3.5.1.min.js&#8221;&gt;&lt;\/script&gt; &lt;script src=&#8221;https:\/\/cdn.jsdelivr.net\/npm\/free-jqgrid@4.15.6\/dist\/jquery.jqgrid.min.js&#8221;&gt;&lt;\/script&gt; &lt;link [&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-25546","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>Detailed explanation of how to use JqGrid - 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\/detailed-explanation-of-how-to-use-jqgrid\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Detailed explanation of how to use JqGrid\" \/>\n<meta property=\"og:description\" content=\"JqGrid is a table plugin based on jQuery that can assist developers in quickly building powerful tables and data display interfaces. Below is a detailed explanation of how to use JqGrid. Include the necessary files: Add the jQuery library, JqGrid plugin file, and required style files to the HTML page. &lt;script src=&quot;https:\/\/code.jquery.com\/jquery-3.5.1.min.js&quot;&gt;&lt;\/script&gt; &lt;script src=&quot;https:\/\/cdn.jsdelivr.net\/npm\/free-jqgrid@4.15.6\/dist\/jquery.jqgrid.min.js&quot;&gt;&lt;\/script&gt; &lt;link [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/\" \/>\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-16T05:10:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-22T06:26:07+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=\"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\/detailed-explanation-of-how-to-use-jqgrid\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/\"},\"author\":{\"name\":\"Liam\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671\"},\"headline\":\"Detailed explanation of how to use JqGrid\",\"datePublished\":\"2024-03-16T05:10:48+00:00\",\"dateModified\":\"2024-03-22T06:26:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/\"},\"wordCount\":143,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/\",\"name\":\"Detailed explanation of how to use JqGrid - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2024-03-16T05:10:48+00:00\",\"dateModified\":\"2024-03-22T06:26:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Detailed explanation of how to use JqGrid\"}]},{\"@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":"Detailed explanation of how to use JqGrid - 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\/detailed-explanation-of-how-to-use-jqgrid\/","og_locale":"en_US","og_type":"article","og_title":"Detailed explanation of how to use JqGrid","og_description":"JqGrid is a table plugin based on jQuery that can assist developers in quickly building powerful tables and data display interfaces. Below is a detailed explanation of how to use JqGrid. Include the necessary files: Add the jQuery library, JqGrid plugin file, and required style files to the HTML page. &lt;script src=\"https:\/\/code.jquery.com\/jquery-3.5.1.min.js\"&gt;&lt;\/script&gt; &lt;script src=\"https:\/\/cdn.jsdelivr.net\/npm\/free-jqgrid@4.15.6\/dist\/jquery.jqgrid.min.js\"&gt;&lt;\/script&gt; &lt;link [&hellip;]","og_url":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2024-03-16T05:10:48+00:00","article_modified_time":"2024-03-22T06:26:07+00:00","author":"Liam","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Liam","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/"},"author":{"name":"Liam","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/23786905eb7b377f45ddb01c17da7671"},"headline":"Detailed explanation of how to use JqGrid","datePublished":"2024-03-16T05:10:48+00:00","dateModified":"2024-03-22T06:26:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/"},"wordCount":143,"commentCount":0,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/","url":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/","name":"Detailed explanation of how to use JqGrid - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2024-03-16T05:10:48+00:00","dateModified":"2024-03-22T06:26:07+00:00","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/detailed-explanation-of-how-to-use-jqgrid\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Detailed explanation of how to use JqGrid"}]},{"@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\/25546","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=25546"}],"version-history":[{"count":1,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/25546\/revisions"}],"predecessor-version":[{"id":59657,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/25546\/revisions\/59657"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=25546"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=25546"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=25546"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}