{"id":144,"date":"2019-06-11T10:06:48","date_gmt":"2019-06-11T01:06:48","guid":{"rendered":"http:\/\/2019se3.satoshis.jp\/?p=144"},"modified":"2019-06-11T12:58:55","modified_gmt":"2019-06-11T03:58:55","slug":"6%e6%9c%8811%e6%97%a5","status":"publish","type":"post","link":"https:\/\/2019se3.satoshis.jp\/?p=144","title":{"rendered":"6\u670811\u65e5"},"content":{"rendered":"<h3>\u6761\u4ef6\u5206\u5c90<\/h3>\n<p>\u30ed\u30b0\u30a4\u30f3\u3059\u308bWeb\u30b5\u30a4\u30c8\u3067\u3001\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u306a\u3044\u4eba\u306b\u300c\u30b2\u30b9\u30c8\u300d\u3068\u8868\u793a\u3057\u305f\u308a\u3001\u30ed\u30b0\u30a4\u30f3\u3057\u305f\u4eba\u306b\u300c\u3088\u3046\u3053\u305d\u3007\u3007\u3055\u3093\uff01\u300d\u306e\u3088\u3046\u306b\u8868\u793a\u3059\u308b\u3068\u304d\u306b\u6761\u4ef6\u5206\u5c90\u3092\u4f7f\u7528\u3059\u308b\u3002<\/p>\n<p>\u30c6\u30ad\u30b9\u30c8\u3067\u306fp.180\u304b\u3089\u306e\u90e8\u5206\u3002<\/p>\n<p>IndexController.java \u306e\u6700\u5f8c\u306b\u30e1\u30bd\u30c3\u30c9\u3092\u8ffd\u52a0\u3059\u308b\u3002<br \/>\n\u30e1\u30bd\u30c3\u30c9\u540d\u3001URL\u3001HTML\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u540d\u524d\u3092 number \u306b\u3059\u308b\u3002<\/p>\n<pre class=\"brush: java; first-line: 79; title: ; notranslate\" title=\"\">\r\n\t@RequestMapping(&quot;\/number\/{id}&quot;)\r\n\tpublic ModelAndView number(@PathVariable int id, ModelAndView mav) {\r\n\t\tmav.setViewName(&quot;number&quot;);\r\n\t\tmav.addObject(&quot;id&quot;, id);\r\n\t\tmav.addObject(&quot;check&quot;, id &gt;= 0);\r\n\t\tmav.addObject(&quot;trueVal&quot;, &quot;POSITIVE!&quot;);\r\n\t\tmav.addObject(&quot;falseVal&quot;, &quot;negative...&quot;);\r\n\t\treturn mav;\r\n\t}\r\n<\/pre>\n<p>HTML\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3067 th:if \u3068 th:unless \u3092\u4f7f\u7528\u3057\u3066\u6761\u4ef6\u5206\u5c90\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;body&gt;\r\n&lt;h1&gt;\u6761\u4ef6\u5206\u5c90&lt;\/h1&gt;\r\n&lt;p th:if=&quot;${check}&quot; th:text=&quot;${id} + ' is ' + ${trueVal}&quot;&gt;message.&lt;\/p&gt;\r\n&lt;p th:unless=&quot;${check}&quot; th:text=&quot;${id} + ' is ' + ${falseVal}&quot;&gt;message.&lt;\/p&gt;\r\n&lt;\/body&gt;\r\n<\/pre>\n<h3>switch\u3092\u4f7f\u3063\u3066\u591a\u9805\u5206\u5c90\u3059\u308b<\/h3>\n<p>\u6708\u306e\u5024\u304b\u3089\u5b63\u7bc0\u3092\u8868\u793a\u3059\u308b\u3002<\/p>\n<p>IndexController.java \u306b month() \u30e1\u30bd\u30c3\u30c9\u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n<pre class=\"brush: java; first-line: 89; title: ; notranslate\" title=\"\">\r\n\t@RequestMapping(&quot;\/month\/{month}&quot;)\r\n\tpublic ModelAndView month(@PathVariable int month, ModelAndView mav) {\r\n\t\tmav.setViewName(&quot;month&quot;);\r\n\t\tint m = Math.abs(month) % 12;\r\n\t\tm = m == 0 ? 12 : m;\r\n\t\tmav.addObject(&quot;month&quot;, m);\r\n\t\tmav.addObject(&quot;check&quot;, Math.floor(m \/ 3));\r\n\t\treturn mav;\r\n\t}\r\n<\/pre>\n<p>HTML\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306f\u3001month.html \u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;body&gt;\r\n&lt;h1&gt;\u591a\u9805\u5206\u5c90&lt;\/h1&gt;\r\n\r\n&lt;div th:switch=&quot;${check}&quot;&gt;\r\n  &lt;p th:case=&quot;0&quot; th:text=&quot;|${month} - Winter|&quot;&gt;&lt;\/p&gt;\r\n  &lt;p th:case=&quot;1&quot; th:text=&quot;|${month} - Spring|&quot;&gt;&lt;\/p&gt;\r\n  &lt;p th:case=&quot;2&quot; th:text=&quot;|${month} - Summer|&quot;&gt;&lt;\/p&gt;\r\n  &lt;p th:case=&quot;3&quot; th:text=&quot;|${month} - Autumn|&quot;&gt;&lt;\/p&gt;\r\n  &lt;p th:case=&quot;4&quot; th:text=&quot;|${month} - Winter|&quot;&gt;&lt;\/p&gt;\r\n&lt;\/div&gt;\r\n\r\n&lt;\/body&gt;\r\n<\/pre>\n<h3>th:each\u3067\u7e70\u308a\u8fd4\u3057\u8868\u793a\u3059\u308b<\/h3>\n<p>IndexController.java \u306b list() \u30e1\u30bd\u30c3\u30c9\u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n<pre class=\"brush: java; first-line: 101; title: ; notranslate\" title=\"\">\r\n\t@RequestMapping(&quot;\/list\/&quot;)\r\n\tpublic ModelAndView list(ModelAndView mav) {\r\n\t\tmav.setViewName(&quot;list&quot;);\r\n\t\tArrayList&lt;String[]&gt; data = new ArrayList&lt;&gt;();\r\n\t\tdata.add(new String[] {&quot;taro&quot;, &quot;taro@yamada&quot;, &quot;090-999-999&quot;});\r\n\t\tdata.add(new String[] {&quot;hanako&quot;, &quot;hanako@flower&quot;, &quot;080-888-888&quot;});\r\n\t\tdata.add(new String[] {&quot;sachiko&quot;, &quot;sachiko@happy&quot;, &quot;070-777-777&quot;});\r\n\t\tmav.addObject(&quot;data&quot;, data);\r\n\t\treturn mav;\r\n\t}\r\n<\/pre>\n<p>list.html \u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;body&gt;\r\n&lt;h1&gt;\u7e70\u308a\u8fd4\u3057&lt;\/h1&gt;\r\n\r\n&lt;table&gt;\r\n  &lt;tr&gt;\r\n    &lt;th&gt;NAME&lt;\/th&gt;\r\n    &lt;th&gt;MAIL&lt;\/th&gt;\r\n    &lt;th&gt;TEL&lt;\/th&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr th:each=&quot;obj:${data}&quot;&gt;\r\n    &lt;td th:text=&quot;${obj[0]}&quot;&gt;&lt;\/td&gt;\r\n    &lt;td th:text=&quot;${obj[1]}&quot;&gt;&lt;\/td&gt;\r\n    &lt;td th:text=&quot;${obj[2]}&quot;&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n&lt;\/table&gt;\r\n\r\n&lt;\/body&gt;\r\n<\/pre>\n<h3>JavaScript \u306e\u30a4\u30f3\u30e9\u30a4\u30f3\u51e6\u7406<\/h3>\n<p>Web\u30b5\u30a4\u30c8\u3092\u4f5c\u3063\u3066\u3044\u308b\u3068\u3001\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u304b\u3089JavaScript\u306b\u5024\u3092\u6e21\u3057\u305f\u3044\u3053\u3068\u304c\u3042\u308b\u306e\u3067\u3001\u305d\u306e\u3084\u308a\u65b9\u3092\u8a66\u3057\u3066\u307f\u308b\u3002<\/p>\n<p>InddexController.java \u306b tax() \u30e1\u30bd\u30c3\u30c9\u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n<pre class=\"brush: java; first-line: 112; title: ; notranslate\" title=\"\">\r\n\t@RequestMapping(&quot;\/tax\/{tax}&quot;)\r\n\tpublic ModelAndView tax(@PathVariable int tax, ModelAndView mav) {\r\n\t\tmav.setViewName(&quot;tax&quot;);\r\n\t\tmav.addObject(&quot;tax&quot;, tax);\r\n\t\treturn mav;\r\n\t}\r\n<\/pre>\n<p>tax.html \u3092\u4f5c\u6210\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html xmlns:th=&quot;http:\/\/www.thymeleaf.org&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;UTF-8&quot;&gt;\r\n&lt;title&gt;\u6d88\u8cbb\u7a0e\u8a08\u7b97&lt;\/title&gt;\r\n&lt;style type=&quot;text\/css&quot;&gt;\r\nh1 {\r\n  font-size: 18pt;\r\n  font-weight: bold;\r\n  color: gray;\r\n}\r\nbody {\r\n  font-size: 13pt;\r\n  color: gray;\r\n  margin: 5px 25px;\r\n}\r\n&lt;\/style&gt;\r\n&lt;script th:inline=&quot;javascript&quot;&gt;\r\nfunction action() {\r\n\tvar val = document.getElementById(&quot;text1&quot;).value;\r\n\tvar res = parseInt(val * ((100 + \/*[[${tax}]]*\/) \/ 100));\r\n\tdocument.getElementById(&quot;msg&quot;).innerHTML = &quot;include tax: &quot; + res;\r\n}\r\n&lt;\/script&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n&lt;h1&gt;JavaScript\u306e\u30a4\u30f3\u30e9\u30a4\u30f3\u51e6\u7406\u3067\u6d88\u8cbb\u7a0e\u8a08\u7b97&lt;\/h1&gt;\r\n&lt;p id=&quot;msg&quot;&gt;&lt;\/p&gt;\r\n&lt;input type=&quot;text&quot; id=&quot;text1&quot; \/&gt;\r\n&lt;button onclick=&quot;action()&quot;&gt;click&lt;\/button&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<h3>\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8<\/h3>\n<p>part.html \u3092\u4f5c\u6210\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; highlight: [6,7,8,9,10,11,16,17,18,19]; title: ; notranslate\" title=\"\">\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html xmlns:th=&quot;http:\/\/www.thymeleaf.org&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;UTF-8&quot;&gt;\r\n&lt;title&gt;part page&lt;\/title&gt;\r\n&lt;style th:fragment=&quot;frag_style&quot;&gt;\r\ndiv.fragment {\r\n  border:solid 3px lightgray;\r\n  padding: 0px 20px;\r\n}\r\n&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n  &lt;h1&gt;Part page&lt;\/h1&gt;\r\n  &lt;div th:fragment=&quot;frag_body&quot;&gt;\r\n    &lt;h2&gt;fragment&lt;\/h2&gt;\r\n    &lt;div class=&quot;fragment&quot;&gt;\r\n      &lt;p&gt;this is fragment content.&lt;\/p&gt;\r\n      &lt;p&gt;sample message..&lt;\/p&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<p>frag.html \u3092\u4f5c\u6210\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; highlight: [6,11,12,13]; title: ; notranslate\" title=\"\">\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html xmlns:th=&quot;http:\/\/www.thymeleaf.org&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;UTF-8&quot;&gt;\r\n&lt;title&gt;top page&lt;\/title&gt;\r\n&lt;style th:include=&quot;part :: frag_style&quot;&gt;&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n  &lt;h1&gt;Top page&lt;\/h1&gt;\r\n  &lt;div th:include=&quot;part :: frag_body&quot;&gt;\r\n    &lt;p&gt;this is original content.&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<p>IndexController.java \u306b frag() \u30e1\u30bd\u30c3\u30c9\u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n<pre class=\"brush: java; first-line: 119; title: ; notranslate\" title=\"\">\r\n\t@RequestMapping(&quot;\/frag&quot;)\r\n\tpublic String frag() {\r\n\t\treturn &quot;frag&quot;;\r\n\t}\r\n<\/pre>\n<p>frag.html \u306b\u30d8\u30c3\u30c0\u30fc\u3068\u30d5\u30c3\u30bf\u30fc\u3092\u5225\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u8aad\u307f\u8fbc\u3080\u3088\u3046\u306b\u3057\u3066\u307f\u308b\u3002<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;body&gt;\r\n\r\n  &lt;div th:include=&quot;part :: header&quot;&gt;\r\n    &lt;p&gt;this is original content.&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n\r\n  &lt;h1&gt;Top page&lt;\/h1&gt;\r\n  &lt;div th:include=&quot;part :: frag_body&quot;&gt;\r\n    &lt;p&gt;this is original content.&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n  &lt;p&gt;\u3053\u3053\u304c\u672c\u6587\u3067\u3059\u3088&lt;\/p&gt;\r\n\r\n  &lt;div th:include=&quot;part :: footer&quot;&gt;\r\n    &lt;p&gt;this is original content.&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n\r\n&lt;\/body&gt;\r\n<\/pre>\n<p>part.html \u306b\u5171\u901a\u3067\u4f7f\u3046\u30d8\u30c3\u30c0\u30fc\u3068\u30d5\u30c3\u30bf\u30fc\u3092\u7528\u610f\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;body&gt;\r\n\r\n  &lt;div th:fragment=&quot;header&quot;&gt;\r\n    &lt;p&gt;\u3053\u3053\u304c\u30d8\u30c3\u30c0\u30fc\u3067\u3059&lt;\/p&gt;\r\n    &lt;hr \/&gt;\r\n  &lt;\/div&gt;\r\n\r\n  &lt;h1&gt;Part page&lt;\/h1&gt;\r\n  &lt;div th:fragment=&quot;frag_body&quot;&gt;\r\n    &lt;h2&gt;fragment&lt;\/h2&gt;\r\n    &lt;div class=&quot;fragment&quot;&gt;\r\n      &lt;p&gt;this is fragment content.&lt;\/p&gt;\r\n      &lt;p&gt;sample message..&lt;\/p&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n\r\n  &lt;div th:fragment=&quot;footer&quot;&gt;\r\n    &lt;hr \/&gt;\r\n    &lt;p&gt;\u3053\u3053\u304c\u30d5\u30c3\u30bf\u30fc\u3067\u3059&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n\r\n&lt;\/body&gt;\r\n<\/pre>\n<h3>\u30e2\u30c7\u30eb\u3068\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9<\/h3>\n<p>\u6b21\u7ae0\u306e\u30e2\u30c7\u30eb\u3068\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u9032\u3080\u6e96\u5099\u3068\u3057\u3066\u3001pom.xml \u306b\u65b0\u3057\u3044\u4f9d\u5b58\u95a2\u4fc2\u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; highlight: [38,39,40,41,42,43,44,45,46]; title: ; notranslate\" title=\"\">\r\n&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;\r\n&lt;project xmlns=&quot;http:\/\/maven.apache.org\/POM\/4.0.0&quot; xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot;\r\n\txsi:schemaLocation=&quot;http:\/\/maven.apache.org\/POM\/4.0.0 http:\/\/maven.apache.org\/xsd\/maven-4.0.0.xsd&quot;&gt;\r\n\t&lt;modelVersion&gt;4.0.0&lt;\/modelVersion&gt;\r\n\t&lt;parent&gt;\r\n\t\t&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n\t\t&lt;artifactId&gt;spring-boot-starter-parent&lt;\/artifactId&gt;\r\n\t\t&lt;version&gt;2.1.4.RELEASE&lt;\/version&gt;\r\n\t\t&lt;relativePath\/&gt; &lt;!-- lookup parent from repository --&gt;\r\n\t&lt;\/parent&gt;\r\n\t&lt;groupId&gt;jp.abc&lt;\/groupId&gt;\r\n\t&lt;artifactId&gt;MyBootApp&lt;\/artifactId&gt;\r\n\t&lt;version&gt;0.0.1-SNAPSHOT&lt;\/version&gt;\r\n\t&lt;name&gt;MyBootApp&lt;\/name&gt;\r\n\t&lt;description&gt;Demo project for Spring Boot&lt;\/description&gt;\r\n\r\n\t&lt;properties&gt;\r\n\t\t&lt;java.version&gt;1.8&lt;\/java.version&gt;\r\n\t&lt;\/properties&gt;\r\n\r\n\t&lt;dependencies&gt;\r\n\t\t&lt;dependency&gt;\r\n\t\t\t&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n\t\t\t&lt;artifactId&gt;spring-boot-starter-web&lt;\/artifactId&gt;\r\n\t\t&lt;\/dependency&gt;\r\n\r\n\t\t&lt;dependency&gt;\r\n\t\t\t&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n\t\t\t&lt;artifactId&gt;spring-boot-starter-test&lt;\/artifactId&gt;\r\n\t\t\t&lt;scope&gt;test&lt;\/scope&gt;\r\n\t\t&lt;\/dependency&gt;\r\n\r\n\t\t&lt;dependency&gt;\r\n\t\t\t&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n\t\t\t&lt;artifactId&gt;spring-boot-starter-thymeleaf&lt;\/artifactId&gt;\r\n\t\t&lt;\/dependency&gt;\r\n\r\n\t\t&lt;dependency&gt;\r\n\t\t\t&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n\t\t\t&lt;artifactId&gt;spring-boot-starter-data-jpa&lt;\/artifactId&gt;\r\n\t\t&lt;\/dependency&gt;\r\n\r\n\t\t&lt;dependency&gt;\r\n\t\t\t&lt;groupId&gt;org.hsqldb&lt;\/groupId&gt;\r\n\t\t\t&lt;artifactId&gt;hsqldb&lt;\/artifactId&gt;\r\n\t\t&lt;\/dependency&gt;\r\n\r\n\t&lt;\/dependencies&gt;\r\n\r\n\t&lt;build&gt;\r\n\t\t&lt;plugins&gt;\r\n\t\t\t&lt;plugin&gt;\r\n\t\t\t\t&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n\t\t\t\t&lt;artifactId&gt;spring-boot-maven-plugin&lt;\/artifactId&gt;\r\n\t\t\t&lt;\/plugin&gt;\r\n\t\t&lt;\/plugins&gt;\r\n\t&lt;\/build&gt;\r\n\r\n&lt;\/project&gt;\r\n<\/pre>\n\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p>\u6761\u4ef6\u5206\u5c90 \u30ed\u30b0\u30a4\u30f3\u3059\u308bWeb\u30b5\u30a4\u30c8\u3067\u3001\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u306a\u3044\u4eba\u306b\u300c\u30b2\u30b9\u30c8\u300d\u3068\u8868\u793a\u3057\u305f\u308a\u3001\u30ed\u30b0\u30a4\u30f3\u3057\u305f\u4eba\u306b\u300c\u3088\u3046\u3053\u305d\u3007\u3007\u3055\u3093\uff01\u300d\u306e\u3088\u3046\u306b\u8868\u793a\u3059\u308b\u3068\u304d\u306b\u6761\u4ef6\u5206\u5c90\u3092\u4f7f\u7528\u3059\u308b\u3002 \u30c6\u30ad\u30b9\u30c8\u3067\u306fp.180\u304b\u3089\u306e\u90e8\u5206\u3002 IndexContr &hellip; <a href=\"https:\/\/2019se3.satoshis.jp\/?p=144\" class=\"more-link\"><span class=\"screen-reader-text\">&#8220;6\u670811\u65e5&#8221; \u306e<\/span>\u7d9a\u304d\u3092\u8aad\u3080<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1,3],"tags":[],"_links":{"self":[{"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/posts\/144"}],"collection":[{"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=144"}],"version-history":[{"count":13,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/posts\/144\/revisions"}],"predecessor-version":[{"id":157,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/posts\/144\/revisions\/157"}],"wp:attachment":[{"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=144"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=144"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=144"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}