{"id":109,"date":"2026-06-28T05:12:41","date_gmt":"2026-06-27T20:12:41","guid":{"rendered":"https:\/\/www.tech-undefined.com\/?p=109"},"modified":"2026-06-28T12:31:10","modified_gmt":"2026-06-28T03:31:10","slug":"datatables-render-logical-value","status":"publish","type":"post","link":"https:\/\/www.tech-undefined.com\/?p=109","title":{"rendered":"\u3010DataTables\u3011\u7269\u7406\u5024\u304b\u3089\u8868\u793a\u7528\u306e\u8ad6\u7406\u5024\u3092\u8868\u793a\u3059\u308b\u65b9\u6cd5"},"content":{"rendered":"<p>API\u3084DB\u3067\u306f<code>1<\/code>\u3001<code>2<\/code>\u3001<code>9<\/code>\u306e\u3088\u3046\u306a\u30b3\u30fc\u30c9\u5024\u3092\u6301\u3061\u3001\u753b\u9762\u3067\u306f\u300c\u6709\u52b9\u300d\u300c\u505c\u6b62\u300d\u300c\u524a\u9664\u6e08\u307f\u300d\u306e\u3088\u3046\u306a\u30e9\u30d9\u30eb\u3067\u898b\u305b\u305f\u3044\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n<p>DataTables\u3067\u306f<code>columns.render<\/code>\u3092\u4f7f\u3046\u3068\u3001\u30c7\u30fc\u30bf\u3068\u3057\u3066\u6301\u3064\u5024\u3068\u753b\u9762\u306b\u51fa\u3059\u5024\u3092\u5206\u3051\u3089\u308c\u307e\u3059\u3002<\/p>\n<h2>\u516c\u5f0f\u30da\u30fc\u30b8<\/h2>\n<ul>\n<li><a href=\"https:\/\/datatables.net\/reference\/option\/columns.render\">columns.render<\/a><\/li>\n<li><a href=\"https:\/\/datatables.net\/manual\/data\/renderers\">Renderers<\/a><\/li>\n<li><a href=\"https:\/\/datatables.net\/examples\/advanced_init\/column_render.html\">Column rendering example<\/a><\/li>\n<\/ul>\n<h2>\u3084\u308a\u305f\u3044\u3053\u3068<\/h2>\n<p>\u305f\u3068\u3048\u3070\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30c7\u30fc\u30bf\u304c\u3042\u308b\u3068\u3057\u307e\u3059\u3002<\/p>\n<pre><code class=\"language-javascript\">const users = [\n    { id: 1, name: &#x27;\u5c71\u7530 \u592a\u90ce&#x27;, status: &#x27;1&#x27; },\n    { id: 2, name: &#x27;\u4f50\u85e4 \u82b1\u5b50&#x27;, status: &#x27;2&#x27; },\n    { id: 3, name: &#x27;\u9234\u6728 \u4e00\u90ce&#x27;, status: &#x27;9&#x27; }\n];<\/code><\/pre>\n<p><code>status<\/code>\u306b\u306f\u7269\u7406\u5024\u3068\u3057\u3066<code>1<\/code>\u3001<code>2<\/code>\u3001<code>9<\/code>\u304c\u5165\u3063\u3066\u3044\u307e\u3059\u3002<\/p>\n<p>\u3053\u306e\u307e\u307eDataTables\u306b\u8868\u793a\u3059\u308b\u3068\u3001\u753b\u9762\u306b\u3082<code>1<\/code>\u3001<code>2<\/code>\u3001<code>9<\/code>\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002<\/p>\n<pre><code class=\"language-javascript\">new DataTable(&#x27;#usersTable&#x27;, {\n    data: users,\n    columns: [\n        { data: &#x27;id&#x27;, title: &#x27;ID&#x27; },\n        { data: &#x27;name&#x27;, title: &#x27;\u540d\u524d&#x27; },\n        { data: &#x27;status&#x27;, title: &#x27;\u30b9\u30c6\u30fc\u30bf\u30b9&#x27; }\n    ]\n});<\/code><\/pre>\n<p>\u30e6\u30fc\u30b6\u30fc\u306b\u898b\u305b\u305f\u3044\u306e\u306f\u7269\u7406\u5024\u3067\u306f\u306a\u304f\u3001\u6b21\u306e\u3088\u3046\u306a\u8868\u793a\u7528\u306e\u5024\u3067\u3059\u3002<\/p>\n<p>| \u7269\u7406\u5024 | \u8868\u793a\u7528\u306e\u8ad6\u7406\u5024 |<br \/>| &#8212; | &#8212; |<br \/>| <code>1<\/code> | \u6709\u52b9 |<br \/>| <code>2<\/code> | \u505c\u6b62 |<br \/>| <code>9<\/code> | \u524a\u9664\u6e08\u307f |<\/p>\n<h2>columns.render\u3067\u8868\u793a\u5024\u3092\u5909\u63db\u3059\u308b<\/h2>\n<p>DataTables\u3067\u306f\u3001\u5217\u5b9a\u7fa9\u306e<code>render<\/code>\u3067\u8868\u793a\u5185\u5bb9\u3092\u52a0\u5de5\u3067\u304d\u307e\u3059\u3002<\/p>\n<pre><code class=\"language-javascript\">const STATUS_LABELS = {\n    &#x27;1&#x27;: &#x27;\u6709\u52b9&#x27;,\n    &#x27;2&#x27;: &#x27;\u505c\u6b62&#x27;,\n    &#x27;9&#x27;: &#x27;\u524a\u9664\u6e08\u307f&#x27;\n};\n\nnew DataTable(&#x27;#usersTable&#x27;, {\n    data: users,\n    columns: [\n        { data: &#x27;id&#x27;, title: &#x27;ID&#x27; },\n        { data: &#x27;name&#x27;, title: &#x27;\u540d\u524d&#x27; },\n        {\n            data: &#x27;status&#x27;,\n            title: &#x27;\u30b9\u30c6\u30fc\u30bf\u30b9&#x27;,\n            render: function (data) {\n                return STATUS_LABELS[data] ?? &#x27;\u4e0d\u660e&#x27;;\n            }\n        }\n    ]\n});<\/code><\/pre>\n<p>\u3053\u308c\u3067\u3001\u5143\u30c7\u30fc\u30bf\u306e<code>status<\/code>\u306f<code>1<\/code>\u3001<code>2<\/code>\u3001<code>9<\/code>\u306e\u307e\u307e\u3001\u753b\u9762\u306b\u306f\u300c\u6709\u52b9\u300d\u300c\u505c\u6b62\u300d\u300c\u524a\u9664\u6e08\u307f\u300d\u3068\u8868\u793a\u3067\u304d\u307e\u3059\u3002<\/p>\n<h2>type\u3092\u898b\u3066\u8868\u793a\u3001\u691c\u7d22\u3001\u30bd\u30fc\u30c8\u3092\u5206\u3051\u308b<\/h2>\n<p><code>render<\/code>\u95a2\u6570\u306b\u306f\u3001DataTables\u304b\u3089<code>data<\/code>\u3001<code>type<\/code>\u3001<code>row<\/code>\u306a\u3069\u304c\u6e21\u3055\u308c\u307e\u3059\u3002<\/p>\n<pre><code class=\"language-javascript\">render: function (data, type, row) {\n    \/\/ data: columns.data\u3067\u6307\u5b9a\u3057\u305f\u5024\n    \/\/ type: display \/ filter \/ sort \/ type \u306a\u3069\n    \/\/ row: \u884c\u5168\u4f53\u306e\u30c7\u30fc\u30bf\n}<\/code><\/pre>\n<p>\u91cd\u8981\u306a\u306e\u306f<code>type<\/code>\u3067\u3059\u3002<\/p>\n<p>DataTables\u306f\u3001\u8868\u793a\u3001\u691c\u7d22\u3001\u30bd\u30fc\u30c8\u306a\u3069\u306e\u7528\u9014\u3054\u3068\u306b<code>render<\/code>\u3092\u547c\u3073\u51fa\u3057\u307e\u3059\u3002<\/p>\n<p>\u305f\u3068\u3048\u3070\u3001\u8868\u793a\u3068\u691c\u7d22\u3067\u306f\u300c\u6709\u52b9\u300d\u3092\u4f7f\u3044\u3001\u30bd\u30fc\u30c8\u3067\u306f\u5143\u306e\u7269\u7406\u5024\u3092\u4f7f\u3044\u305f\u3044\u5834\u5408\u306f\u3001\u6b21\u306e\u3088\u3046\u306b\u66f8\u3051\u307e\u3059\u3002<\/p>\n<pre><code class=\"language-javascript\">const STATUS_LABELS = {\n    &#x27;1&#x27;: &#x27;\u6709\u52b9&#x27;,\n    &#x27;2&#x27;: &#x27;\u505c\u6b62&#x27;,\n    &#x27;9&#x27;: &#x27;\u524a\u9664\u6e08\u307f&#x27;\n};\n\nnew DataTable(&#x27;#usersTable&#x27;, {\n    data: users,\n    columns: [\n        { data: &#x27;id&#x27;, title: &#x27;ID&#x27; },\n        { data: &#x27;name&#x27;, title: &#x27;\u540d\u524d&#x27; },\n        {\n            data: &#x27;status&#x27;,\n            title: &#x27;\u30b9\u30c6\u30fc\u30bf\u30b9&#x27;,\n            render: function (data, type) {\n                if (type === &#x27;display&#x27; || type === &#x27;filter&#x27;) {\n                    return STATUS_LABELS[data] ?? &#x27;\u4e0d\u660e&#x27;;\n                }\n\n                return data;\n            }\n        }\n    ]\n});<\/code><\/pre>\n<p>\u3053\u306e\u66f8\u304d\u65b9\u306b\u3059\u308b\u3068\u3001\u753b\u9762\u8868\u793a\u3068\u691c\u7d22\u306b\u306f\u30e9\u30d9\u30eb\u3092\u4f7f\u3044\u3001\u30bd\u30fc\u30c8\u3084\u578b\u5224\u5b9a\u306b\u306f\u5143\u306e\u7269\u7406\u5024\u3092\u4f7f\u3048\u307e\u3059\u3002<\/p>\n<h2>\u8868\u793a\u9806\u3092\u5236\u5fa1\u3057\u305f\u3044\u5834\u5408<\/h2>\n<p>\u7269\u7406\u5024\u306e\u5927\u5c0f\u3068\u3001\u753b\u9762\u4e0a\u306e\u4e26\u3073\u9806\u304c\u4e00\u81f4\u3057\u306a\u3044\u5834\u5408\u3082\u3042\u308a\u307e\u3059\u3002<\/p>\n<p>\u305f\u3068\u3048\u3070\u3001\u4ee5\u4e0b\u306e\u9806\u756a\u3067\u4e26\u3079\u305f\u3044\u3068\u3057\u307e\u3059\u3002<\/p>\n<ol>\n<li>\u6709\u52b9<\/li>\n<li>\u505c\u6b62<\/li>\n<li>\u524a\u9664\u6e08\u307f<\/li>\n<\/ol>\n<p>\u305d\u306e\u5834\u5408\u306f\u3001\u8868\u793a\u7528\u30e9\u30d9\u30eb\u3068\u306f\u5225\u306b\u30bd\u30fc\u30c8\u7528\u306e\u5024\u3092\u7528\u610f\u3057\u307e\u3059\u3002<\/p>\n<pre><code class=\"language-javascript\">const STATUS_LABELS = {\n    &#x27;1&#x27;: &#x27;\u6709\u52b9&#x27;,\n    &#x27;2&#x27;: &#x27;\u505c\u6b62&#x27;,\n    &#x27;9&#x27;: &#x27;\u524a\u9664\u6e08\u307f&#x27;\n};\n\nconst STATUS_SORT_ORDER = {\n    &#x27;1&#x27;: 1,\n    &#x27;2&#x27;: 2,\n    &#x27;9&#x27;: 3\n};\n\nnew DataTable(&#x27;#usersTable&#x27;, {\n    data: users,\n    columns: [\n        { data: &#x27;id&#x27;, title: &#x27;ID&#x27; },\n        { data: &#x27;name&#x27;, title: &#x27;\u540d\u524d&#x27; },\n        {\n            data: &#x27;status&#x27;,\n            title: &#x27;\u30b9\u30c6\u30fc\u30bf\u30b9&#x27;,\n            render: function (data, type) {\n                if (type === &#x27;display&#x27; || type === &#x27;filter&#x27;) {\n                    return STATUS_LABELS[data] ?? &#x27;\u4e0d\u660e&#x27;;\n                }\n\n                if (type === &#x27;sort&#x27; || type === &#x27;type&#x27;) {\n                    return STATUS_SORT_ORDER[data] ?? 999;\n                }\n\n                return data;\n            }\n        }\n    ]\n});<\/code><\/pre>\n<p>\u3053\u308c\u3067\u3001\u8868\u793a\u306f\u300c\u6709\u52b9\u300d\u300c\u505c\u6b62\u300d\u300c\u524a\u9664\u6e08\u307f\u300d\u306e\u307e\u307e\u3001\u30bd\u30fc\u30c8\u306f<code>STATUS_SORT_ORDER<\/code>\u306e\u5024\u3067\u5236\u5fa1\u3067\u304d\u307e\u3059\u3002<\/p>\n<h2>row\u3092\u4f7f\u3063\u3066\u8907\u6570\u9805\u76ee\u304b\u3089\u8868\u793a\u5024\u3092\u4f5c\u308b<\/h2>\n<p><code>render<\/code>\u3067\u306f\u3001\u884c\u5168\u4f53\u306e\u30c7\u30fc\u30bf\u3092<code>row<\/code>\u304b\u3089\u53c2\u7167\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>\u305f\u3068\u3048\u3070\u3001<code>status<\/code>\u3068<code>isLocked<\/code>\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u8868\u793a\u3092\u5909\u3048\u305f\u3044\u5834\u5408\u3067\u3059\u3002<\/p>\n<pre><code class=\"language-javascript\">const users = [\n    { id: 1, name: &#x27;\u5c71\u7530 \u592a\u90ce&#x27;, status: &#x27;1&#x27;, isLocked: false },\n    { id: 2, name: &#x27;\u4f50\u85e4 \u82b1\u5b50&#x27;, status: &#x27;1&#x27;, isLocked: true },\n    { id: 3, name: &#x27;\u9234\u6728 \u4e00\u90ce&#x27;, status: &#x27;2&#x27;, isLocked: false }\n];\n\nconst STATUS_LABELS = {\n    &#x27;1&#x27;: &#x27;\u6709\u52b9&#x27;,\n    &#x27;2&#x27;: &#x27;\u505c\u6b62&#x27;,\n    &#x27;9&#x27;: &#x27;\u524a\u9664\u6e08\u307f&#x27;\n};\n\nnew DataTable(&#x27;#usersTable&#x27;, {\n    data: users,\n    columns: [\n        { data: &#x27;id&#x27;, title: &#x27;ID&#x27; },\n        { data: &#x27;name&#x27;, title: &#x27;\u540d\u524d&#x27; },\n        {\n            data: &#x27;status&#x27;,\n            title: &#x27;\u30b9\u30c6\u30fc\u30bf\u30b9&#x27;,\n            render: function (data, type, row) {\n                if (type !== &#x27;display&#x27; &amp;&amp; type !== &#x27;filter&#x27;) {\n                    return data;\n                }\n\n                const label = STATUS_LABELS[data] ?? &#x27;\u4e0d\u660e&#x27;;\n                return row.isLocked ? `${label}\uff08\u30ed\u30c3\u30af\u4e2d\uff09` : label;\n            }\n        }\n    ]\n});<\/code><\/pre>\n<p><code>data<\/code>\u3060\u3051\u3067\u8db3\u308a\u306a\u3044\u5834\u5408\u306f\u3001<code>row<\/code>\u3092\u4f7f\u3063\u3066\u884c\u5168\u4f53\u304b\u3089\u8868\u793a\u5024\u3092\u7d44\u307f\u7acb\u3066\u308b\u3068\u4fbf\u5229\u3067\u3059\u3002<\/p>\n<h2>\u5171\u901a\u95a2\u6570\u306b\u3057\u3066\u4f7f\u3044\u56de\u3059<\/h2>\n<p>\u30b9\u30c6\u30fc\u30bf\u30b9\u5909\u63db\u3092\u8907\u6570\u306eDataTables\u3067\u4f7f\u3046\u5834\u5408\u306f\u3001\u5909\u63db\u51e6\u7406\u3092\u5171\u901a\u95a2\u6570\u306b\u3057\u3066\u304a\u304f\u3068\u697d\u3067\u3059\u3002<\/p>\n<pre><code class=\"language-javascript\">const STATUS_LABELS = {\n    &#x27;1&#x27;: &#x27;\u6709\u52b9&#x27;,\n    &#x27;2&#x27;: &#x27;\u505c\u6b62&#x27;,\n    &#x27;9&#x27;: &#x27;\u524a\u9664\u6e08\u307f&#x27;\n};\n\nconst STATUS_SORT_ORDER = {\n    &#x27;1&#x27;: 1,\n    &#x27;2&#x27;: 2,\n    &#x27;9&#x27;: 3\n};\n\nfunction renderStatus(data, type) {\n    if (type === &#x27;display&#x27; || type === &#x27;filter&#x27;) {\n        return STATUS_LABELS[data] ?? &#x27;\u4e0d\u660e&#x27;;\n    }\n\n    if (type === &#x27;sort&#x27; || type === &#x27;type&#x27;) {\n        return STATUS_SORT_ORDER[data] ?? 999;\n    }\n\n    return data;\n}\n\nnew DataTable(&#x27;#usersTable&#x27;, {\n    data: users,\n    columns: [\n        { data: &#x27;id&#x27;, title: &#x27;ID&#x27; },\n        { data: &#x27;name&#x27;, title: &#x27;\u540d\u524d&#x27; },\n        {\n            data: &#x27;status&#x27;,\n            title: &#x27;\u30b9\u30c6\u30fc\u30bf\u30b9&#x27;,\n            render: renderStatus\n        }\n    ]\n});<\/code><\/pre>\n<p>\u3053\u306e\u5f62\u306b\u3057\u3066\u304a\u304f\u3068\u3001\u5225\u306e\u4e00\u89a7\u3067\u3082<code>render: renderStatus<\/code>\u3068\u66f8\u304f\u3060\u3051\u3067\u540c\u3058\u5909\u63db\u3092\u4f7f\u3048\u307e\u3059\u3002<\/p>\n<h2>HTML\u3092\u8fd4\u3059\u5834\u5408\u306e\u6ce8\u610f<\/h2>\n<p><code>render<\/code>\u3067\u306fHTML\u6587\u5b57\u5217\u3092\u8fd4\u3059\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002<\/p>\n<pre><code class=\"language-javascript\">function renderStatus(data, type) {\n    const label = STATUS_LABELS[data] ?? &#x27;\u4e0d\u660e&#x27;;\n\n    if (type === &#x27;display&#x27;) {\n        return `&lt;span class=&quot;status-label status-${data}&quot;&gt;${label}&lt;\/span&gt;`;\n    }\n\n    if (type === &#x27;filter&#x27;) {\n        return label;\n    }\n\n    return data;\n}<\/code><\/pre>\n<p>\u305f\u3060\u3057\u3001\u5916\u90e8\u5165\u529b\u3092\u305d\u306e\u307e\u307eHTML\u3068\u3057\u3066\u8fd4\u3059\u3068XSS\u306e\u539f\u56e0\u306b\u306a\u308a\u307e\u3059\u3002<\/p>\n<p>\u8868\u793a\u7528HTML\u3092\u8fd4\u3059\u5834\u5408\u306f\u3001\u30b3\u30fc\u30c9\u5024\u306e\u3088\u3046\u306b\u5b89\u5168\u306a\u5024\u3060\u3051\u3092\u4f7f\u3046\u3001\u307e\u305f\u306f\u6587\u5b57\u5217\u3092\u30a8\u30b9\u30b1\u30fc\u30d7\u3057\u3066\u304b\u3089\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n<h2>\u307e\u3068\u3081<\/h2>\n<p>\u7269\u7406\u5024\u3092\u8868\u793a\u7528\u30e9\u30d9\u30eb\u306b\u5909\u63db\u3059\u308b\u306a\u3089\u3001<code>columns.render<\/code>\u306b\u5909\u63db\u51e6\u7406\u3092\u307e\u3068\u3081\u307e\u3059\u3002<\/p>\n<p>\u57fa\u672c\u306f\u3001\u7269\u7406\u5024\u3068\u8868\u793a\u30e9\u30d9\u30eb\u306e\u5bfe\u5fdc\u8868\u3092\u4f5c\u308a\u3001<code>render<\/code>\u3067\u5909\u63db\u3059\u308b\u3060\u3051\u3067\u3059\u3002<\/p>\n<p>\u691c\u7d22\u3084\u30bd\u30fc\u30c8\u3082\u8003\u616e\u3059\u308b\u5834\u5408\u306f\u3001<code>type<\/code>\u3092\u898b\u3066\u8fd4\u3059\u5024\u3092\u5206\u3051\u307e\u3059\u3002<\/p>\n<ul>\n<li><code>display<\/code>: \u753b\u9762\u306b\u8868\u793a\u3059\u308b\u5024<\/li>\n<li><code>filter<\/code>: \u691c\u7d22\u306b\u4f7f\u3046\u5024<\/li>\n<li><code>sort<\/code>: \u30bd\u30fc\u30c8\u306b\u4f7f\u3046\u5024<\/li>\n<li><code>type<\/code>: \u578b\u5224\u5b9a\u306b\u4f7f\u3046\u5024<\/li>\n<\/ul>\n<p>\u7269\u7406\u5024\u306f\u30c7\u30fc\u30bf\u3068\u3057\u3066\u4fdd\u6301\u3057\u3001\u753b\u9762\u306b\u306f\u30e6\u30fc\u30b6\u30fc\u306b\u5206\u304b\u308a\u3084\u3059\u3044\u8ad6\u7406\u5024\u3092\u8868\u793a\u3059\u308b\u3001\u3068\u3044\u3046\u5206\u3051\u65b9\u306b\u3059\u308b\u3068\u3001DataTables\u306e\u4e00\u89a7\u3092\u6271\u3044\u3084\u3059\u304f\u3067\u304d\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>DataTables\u3067\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9\u306a\u3069\u306e\u7269\u7406\u5024\u3092\u53d7\u3051\u53d6\u308a\u3001\u753b\u9762\u306b\u306f\u8868\u793a\u7528\u30e9\u30d9\u30eb\u3092\u51fa\u3059\u5b9f\u88c5\u3092columns.render\u3067\u6574\u7406\u3057\u307e\u3059\u3002<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"swell_btn_cv_data":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":true,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[10],"tags":[13,14],"class_list":["post-109","post","type-post","status-publish","format-standard","hentry","category-javascript","tag-datatables","tag-javascript"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=\/wp\/v2\/posts\/109","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=109"}],"version-history":[{"count":3,"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=\/wp\/v2\/posts\/109\/revisions"}],"predecessor-version":[{"id":130,"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=\/wp\/v2\/posts\/109\/revisions\/130"}],"wp:attachment":[{"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=109"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=109"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tech-undefined.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=109"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}