{"id":439,"date":"2023-02-01T18:15:34","date_gmt":"2023-02-01T10:15:34","guid":{"rendered":"https:\/\/www.ljcljc.cn\/?p=439"},"modified":"2024-04-08T10:26:45","modified_gmt":"2024-04-08T02:26:45","slug":"three-js%e5%85%a5%e9%97%a8-%e6%8e%a7%e5%88%b6%e7%89%a9%e4%bd%93%e7%a7%bb%e5%8a%a8","status":"publish","type":"post","link":"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/","title":{"rendered":"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u4e00\u3001\u6838\u5fc3\u4ee3\u7801\u8bb2\u89e3<\/h2>\n\n\n\n<p>1. \u4fee\u6539\u7269\u4f53\u7684\u4e3a\u4f4d\u7f6e\uff0c\u4e3b\u8981\u7528\u5230Mesh\u4e2d\u7684postition\u5c5e\u6027\uff08\u7ee7\u627f\u81eaObject3D\uff09<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>.position&nbsp;:&nbsp;Vector3<\/strong><\/p>\n<cite>\u8868\u793a\u5bf9\u8c61\u5c40\u90e8\u4f4d\u7f6e\u7684Vector3\u3002\u9ed8\u8ba4\u503c\u4e3a(0, 0, 0)\u3002<\/cite><\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Vector3\uff08\u4e09\u7ef4\u5411\u91cf\uff09<\/strong><\/p>\n<cite>\u8be5\u7c7b\u8868\u793a\u7684\u662f\u4e00\u4e2a\u4e09\u7ef4\u5411\u91cf\uff083D&nbsp;vector\uff09\u3002 \u4e00\u4e2a\u4e09\u7ef4\u5411\u91cf\u8868\u793a\u7684\u662f\u4e00\u4e2a\u6709\u987a\u5e8f\u7684\u3001\u4e09\u4e2a\u4e3a\u4e00\u7ec4\u7684\u6570\u5b57\u7ec4\u5408\uff08\u6807\u8bb0\u4e3ax\u3001y\u548cz\uff09\uff0c \u53ef\u88ab\u7528\u6765\u8868\u793a\u5f88\u591a\u4e8b\u7269\uff0c\u4f8b\u5982\uff1a<br>1. \u4e00\u4e2a\u4f4d\u4e8e\u4e09\u7ef4\u7a7a\u95f4\u4e2d\u7684\u70b9\u3002<br>2. \u4e00\u4e2a\u5728\u4e09\u7ef4\u7a7a\u95f4\u4e2d\u7684\u65b9\u5411\u4e0e\u957f\u5ea6\u7684\u5b9a\u4e49\u3002\u5728three.js\u4e2d\uff0c\u957f\u5ea6\u603b\u662f\u4ece(0, 0, 0)\u5230(x, y, z)\u7684&nbsp;Euclidean distance\uff08\u6b27\u51e0\u91cc\u5fb7\u8ddd\u79bb\uff0c\u5373\u76f4\u7ebf\u8ddd\u79bb\uff09\uff0c \u65b9\u5411\u4e5f\u662f\u4ece(0, 0, 0)\u5230(x, y, z)\u7684\u65b9\u5411\u3002<br>3. \u4efb\u610f\u7684\u3001\u6709\u987a\u5e8f\u7684\u3001\u4e09\u4e2a\u4e3a\u4e00\u7ec4\u7684\u6570\u5b57\u7ec4\u5408\u3002<br>4. \u5176\u4ed6\u7684\u4e00\u4e9b\u4e8b\u7269\u4e5f\u53ef\u4ee5\u4f7f\u7528\u4e8c\u7ef4\u5411\u91cf\u8fdb\u884c\u8868\u793a\uff0c\u6bd4\u5982\u8bf4\u52a8\u91cf\u77e2\u91cf\u7b49\u7b49\uff1b \u4f46\u4ee5\u4e0a\u8fd9\u4e9b\u662f\u5b83\u5728three.js\u4e2d\u7684\u5e38\u7528\u7528\u9014\u3002<br><strong>\u5bf9 Vector3 \u5b9e\u4f8b\u8fdb\u884c\u904d\u5386\u5c06\u6309\u76f8\u5e94\u7684\u987a\u5e8f\u751f\u6210\u5b83\u7684\u5206\u91cf (x, y, z)\u3002<\/strong><\/cite><\/blockquote>\n\n\n\n<pre class=\"wp-block-code\"><code>cube.position.set(5, 0, 0);<\/code><\/pre>\n\n\n\n<p>\u6216<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cube.position.x = 5;<\/code><\/pre>\n\n\n\n<p>2. \u5b9e\u73b0\u8ba9\u7269\u4f53\u4e00\u76f4\u79fb\u52a8\uff0c\u79fb\u5230\u67d0\u4e00\u4e2a\u8ddd\u79bb\u65f6\u56de\u5230\u539f\u70b9\uff0c\u5982\u6b64\u5f80\u590d<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>const render = () =&gt; {\n    cube.position.x += 0.01;\n    if(cube.position.x &gt; 5) {\n        cube.position.x = 0;\n    }\n    renderer.render(scene, camera);\n    \/\/ \u6e32\u67d3\u4e0b\u4e00\u5e27\u7684\u65f6\u5019\u5c31\u4f1a\u8c03\u7528render\u51fd\u6570\n    requestAnimationFrame(render);\n}<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/www.ljcljc.cn\/wp-content\/uploads\/2023\/02\/\u52a8\u753b.webp'><img class=\"lazyload lazyload-style-1\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  loading=\"lazy\" decoding=\"async\" width=\"1349\" height=\"726\" data-original=\"https:\/\/www.ljcljc.cn\/wp-content\/uploads\/2023\/02\/\u52a8\u753b.webp\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" class=\"wp-image-448\"\/><\/div><figcaption class=\"wp-element-caption\">\u8fd0\u884c\u6548\u679c<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">\u4e8c\u3001\u5b8c\u6574\u4ee3\u7801<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>\/** \n * Learning3\n * threejs\u63a7\u52363d\u7269\u4f53\u79fb\u52a8\n * Author: Li Jincheng\n * Time: 2023\/01\/31\n*\/\n\n&lt;template&gt;\n    &lt;div&gt;&lt;\/div&gt;\n&lt;\/template&gt;\n\n\n&lt;script&gt;\nimport * as THREE from 'three'\n\/\/ \u5bfc\u5165\u8f68\u9053\u63a7\u5236\u5668\nimport { OrbitControls } from 'three\/examples\/jsm\/controls\/OrbitControls'\n\n\n\nexport default {\n    name: 'Learning3',\n    methods: {\n        init() {\n            \/\/ \u521b\u5efa\u573a\u666f\n            const scene = new THREE.Scene();\n\n            \/\/ \u521b\u5efa\uff08\u900f\u89c6\u6295\u5f71\uff09\u76f8\u673a\n            const camera = new THREE.PerspectiveCamera(75, window.innerWidth \/ window.innerHeight, 0.1, 1000);\n\n            \/\/ \u8bbe\u7f6e\u76f8\u673a\u4f4d\u7f6e\n            camera.position.set(0, 0, 10);\n            scene.add(camera);\n\n            \/\/ \u6dfb\u52a0\u7269\u4f53\n            \/\/ \u521b\u5efa\u51e0\u4f55\u4f53\n            const cubeGeometry = new THREE.BoxGeometry();\n            const cubeMaterial = new THREE.MeshBasicMaterial({ color: 0xffff00 });\n\n            \/\/ \u6839\u636e\u51e0\u4f55\u4f53\u548c\u6750\u8d28\u521b\u5efa\u7269\u4f53\n            const cube = new THREE.Mesh(cubeGeometry, cubeMaterial);\n\n            \/\/\u4fee\u6539\u7269\u4f53\u7684\u4e3a\u4f4d\u7f6e\n            \/\/ cube.position.set(5, 0, 0);\n            cube.position.x = 3;\n\n            \/\/ \u5c06\u51e0\u4f55\u4f53\u6dfb\u52a0\u5230\u573a\u666f\u4e2d\n            scene.add(cube);\n\n            \/\/ \u521d\u59cb\u5316\u6e32\u67d3\u5668\n            const renderer = new THREE.WebGLRenderer();\n\n            \/\/ \u8bbe\u7f6e\u6e32\u67d3\u7684\u5c3a\u5bf8\u5927\u5c0f\n            renderer.setSize(window.innerWidth, window.innerHeight);\n            \/\/ console.log(renderer)\n\n            \/\/ \u5c06webgl\u6e32\u67d3\u7684canvas\u5185\u5bb9\u6dfb\u52a0\u5230body\n            document.body.appendChild(renderer.domElement);\n\n            \/\/ \/\/ \u4f7f\u7528\u6e32\u67d3\u5668\uff0c\u901a\u8fc7\u76f8\u673a\u5c06\u573a\u666f\u6e32\u67d3\u8fdb\u6765\n            \/\/ renderer.render(scene, camera);\n\n            \/\/\u521b\u5efa\u8f68\u9053\u63a7\u5236\u5668\n            const controls = new OrbitControls(camera, renderer.domElement);\n\n            \/\/ \u6dfb\u52a0\u5750\u6807\u8f74\u8f85\u52a9\u5668\n            const axesHelper = new THREE.AxesHelper(5);\n            scene.add(axesHelper);\n\n            const render = () =&gt; {\n                cube.position.x += 0.01;\n                if(cube.position.x &gt; 5) {\n                    cube.position.x = 0;\n                }\n                renderer.render(scene, camera);\n                \/\/ \u6e32\u67d3\u4e0b\u4e00\u5e27\u7684\u65f6\u5019\u5c31\u4f1a\u8c03\u7528render\u51fd\u6570\n                requestAnimationFrame(render);\n            }\n\n            render();\n        }\n    },\n    mounted() {\n        this.init()\n    }\n\n}\n&lt;\/script&gt;\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u4e00\u3001\u6838\u5fc3\u4ee3\u7801\u8bb2\u89e3 1. \u4fee\u6539\u7269\u4f53\u7684\u4e3a\u4f4d\u7f6e\uff0c\u4e3b\u8981\u7528\u5230Mesh\u4e2d\u7684postition\u5c5e\u6027\uff08\u7ee7\u627f\u81eaObject3D\uff09 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22],"tags":[],"class_list":["post-439","post","type-post","status-publish","format-standard","hentry","category-three-js"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8 - LJC&#039;s blog<\/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:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8 - LJC&#039;s blog\" \/>\n<meta property=\"og:description\" content=\"\u4e00\u3001\u6838\u5fc3\u4ee3\u7801\u8bb2\u89e3 1. \u4fee\u6539\u7269\u4f53\u7684\u4e3a\u4f4d\u7f6e\uff0c\u4e3b\u8981\u7528\u5230Mesh\u4e2d\u7684postition\u5c5e\u6027\uff08\u7ee7\u627f\u81eaObject3D\uff09 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/\" \/>\n<meta property=\"og:site_name\" content=\"LJC&#039;s blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-01T10:15:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-08T02:26:45+00:00\" \/>\n<meta name=\"author\" content=\"\u674e \u9526\u6210\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u674e \u9526\u6210\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/\"},\"author\":{\"name\":\"\u674e \u9526\u6210\",\"@id\":\"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/2e095138311f9c813747d20a8f911a46\"},\"headline\":\"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8\",\"datePublished\":\"2023-02-01T10:15:34+00:00\",\"dateModified\":\"2024-04-08T02:26:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/\"},\"wordCount\":36,\"publisher\":{\"@id\":\"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/2e095138311f9c813747d20a8f911a46\"},\"articleSection\":[\"three.js\u5b66\u4e60\"],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/\",\"url\":\"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/\",\"name\":\"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8 - LJC&#039;s blog\",\"isPartOf\":{\"@id\":\"https:\/\/blog.ljcljc.cn\/#website\"},\"datePublished\":\"2023-02-01T10:15:34+00:00\",\"dateModified\":\"2024-04-08T02:26:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/blog.ljcljc.cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.ljcljc.cn\/#website\",\"url\":\"https:\/\/blog.ljcljc.cn\/\",\"name\":\"LJC&#039;s blog\",\"description\":\"\u5c0f\u6210\u77e5\u8bc6\u5e93\",\"publisher\":{\"@id\":\"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/2e095138311f9c813747d20a8f911a46\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.ljcljc.cn\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"zh-Hans\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/2e095138311f9c813747d20a8f911a46\",\"name\":\"\u674e \u9526\u6210\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.ljcljc.cn\/wp-content\/uploads\/2023\/02\/g.jpg\",\"contentUrl\":\"https:\/\/www.ljcljc.cn\/wp-content\/uploads\/2023\/02\/g.jpg\",\"width\":500,\"height\":500,\"caption\":\"\u674e \u9526\u6210\"},\"logo\":{\"@id\":\"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/image\/\"},\"url\":\"https:\/\/blog.ljcljc.cn\/index.php\/author\/ljc\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8 - LJC&#039;s blog","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:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/","og_locale":"zh_CN","og_type":"article","og_title":"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8 - LJC&#039;s blog","og_description":"\u4e00\u3001\u6838\u5fc3\u4ee3\u7801\u8bb2\u89e3 1. \u4fee\u6539\u7269\u4f53\u7684\u4e3a\u4f4d\u7f6e\uff0c\u4e3b\u8981\u7528\u5230Mesh\u4e2d\u7684postition\u5c5e\u6027\uff08\u7ee7\u627f\u81eaObject3D\uff09 [&hellip;]","og_url":"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/","og_site_name":"LJC&#039;s blog","article_published_time":"2023-02-01T10:15:34+00:00","article_modified_time":"2024-04-08T02:26:45+00:00","author":"\u674e \u9526\u6210","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"\u674e \u9526\u6210"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/#article","isPartOf":{"@id":"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/"},"author":{"name":"\u674e \u9526\u6210","@id":"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/2e095138311f9c813747d20a8f911a46"},"headline":"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8","datePublished":"2023-02-01T10:15:34+00:00","dateModified":"2024-04-08T02:26:45+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/"},"wordCount":36,"publisher":{"@id":"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/2e095138311f9c813747d20a8f911a46"},"articleSection":["three.js\u5b66\u4e60"],"inLanguage":"zh-Hans"},{"@type":"WebPage","@id":"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/","url":"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/","name":"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8 - LJC&#039;s blog","isPartOf":{"@id":"https:\/\/blog.ljcljc.cn\/#website"},"datePublished":"2023-02-01T10:15:34+00:00","dateModified":"2024-04-08T02:26:45+00:00","breadcrumb":{"@id":"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blog.ljcljc.cn\/index.php\/2023\/02\/01\/439\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/blog.ljcljc.cn\/"},{"@type":"ListItem","position":2,"name":"Three.js\u5165\u95e8-\u63a7\u5236\u7269\u4f53\u79fb\u52a8"}]},{"@type":"WebSite","@id":"https:\/\/blog.ljcljc.cn\/#website","url":"https:\/\/blog.ljcljc.cn\/","name":"LJC&#039;s blog","description":"\u5c0f\u6210\u77e5\u8bc6\u5e93","publisher":{"@id":"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/2e095138311f9c813747d20a8f911a46"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.ljcljc.cn\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"zh-Hans"},{"@type":["Person","Organization"],"@id":"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/2e095138311f9c813747d20a8f911a46","name":"\u674e \u9526\u6210","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/image\/","url":"https:\/\/www.ljcljc.cn\/wp-content\/uploads\/2023\/02\/g.jpg","contentUrl":"https:\/\/www.ljcljc.cn\/wp-content\/uploads\/2023\/02\/g.jpg","width":500,"height":500,"caption":"\u674e \u9526\u6210"},"logo":{"@id":"https:\/\/blog.ljcljc.cn\/#\/schema\/person\/image\/"},"url":"https:\/\/blog.ljcljc.cn\/index.php\/author\/ljc\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/posts\/439","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/comments?post=439"}],"version-history":[{"count":5,"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/posts\/439\/revisions"}],"predecessor-version":[{"id":465,"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/posts\/439\/revisions\/465"}],"wp:attachment":[{"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/media?parent=439"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/categories?post=439"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.ljcljc.cn\/index.php\/wp-json\/wp\/v2\/tags?post=439"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}