{"id":790,"date":"2025-04-15T16:25:06","date_gmt":"2025-04-15T08:25:06","guid":{"rendered":"http:\/\/www.xinsk.cn\/?p=790"},"modified":"2025-04-16T10:49:17","modified_gmt":"2025-04-16T02:49:17","slug":"vue3ts-%e6%b0%b4%e5%8d%b0%e7%bb%84%e4%bb%b6","status":"publish","type":"post","link":"http:\/\/www.xinsk.cn\/?p=790","title":{"rendered":"VUE3+TS \u6c34\u5370\u7ec4\u4ef6"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">\u4f7f\u7528\u5de5\u5177<\/mark><\/strong><br>\uff081\uff09\u3001Vue3+Vite+TS<br><br><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">\u7ec4\u4ef6\u529f\u80fd\uff1a<\/mark><\/strong><br>\uff081\uff09\u6c34\u5370\u5c06\u60ac\u6d6e\u4e8e\u5bf9\u5e94\u533a\u57df\u7684\u9876\u90e8\uff0c\u4f46\u5e76\u4e0d\u4f1a\u5f71\u54cd\u9875\u9762\u5176\u4ed6dom\u5143\u7d20\u7684\u76f8\u5173\u64cd\u4f5c\u3002<br>\uff082\uff09\u6c34\u5370\u65e0\u6cd5\u901a\u8fc7F12\u8c03\u8bd5\u5de5\u5177\u8fdb\u884c\u5220\u9664\u6216\u6837\u5f0f\u4fee\u6539\u3002<br>\uff083\uff09\u6c34\u5370\u53ef\u81ea\u5b9a\u4e49\u6587\u5b57\uff0c\u5b57\u4f53\u5927\u5c0f\uff0c\u6587\u5b57\u95f4\u9694\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><br><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-orange-color\">1\u3001watermark.ts<\/mark><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>export function addWatermark(canvas: HTMLCanvasElement, watermarkText: string) {\n\n    if (!canvas) return;\n\n    \/\/ \u83b7\u53d6\u7236\u5bb9\u5668\u7684\u5c3a\u5bf8\n    const parentRect = canvas.parentElement?.getBoundingClientRect();\n    if (!parentRect) return;\n\n    \/\/ \u4f7f\u7528\u89c6\u53e3\u5bbd\u5ea6\u548c\u9ad8\u5ea6\u8bbe\u7f6ecanvas\u7684\u5c3a\u5bf8\uff08css\u7684\u5bbd\u9ad8\u8bbe\u7f6e\u52a0\u4e0acanvas\u7684\u5bbd\u9ad8\u5c5e\u6027\u8bbe\u7f6e\uff0c\u53ef\u4ee5\u4fdd\u8bc1\u5f53\u7236\u7ec4\u4ef6\u5bbd\u9ad8\u53d8\u5316\u65f6\uff0ccanvas\u4e0d\u4f1a\u8d85\u51fa\u7236\u5bb9\u5668\u8303\u56f4\uff09\n    canvas.style.width = '100%'\n    canvas.style.height = '100%'\n    canvas.style.position = 'absolute';\n    canvas.style.top = '0';\n    canvas.style.left = '0';\n    canvas.style.zIndex = '9999';\n    canvas.style.pointerEvents = 'none';\n    canvas.style.opacity = '1';\n    canvas.style.display = 'block';\n    canvas.width = parentRect.width;\n    canvas.height = parentRect.height\n\n    const ctx = canvas.getContext('2d');\n    if (!ctx) return;\n\n    const canvasWidth = canvas.width;\n    const canvasHeight = canvas.height * 5;\n    const fontSize = 24;\n    const font = `${fontSize}px Arial`;\n    const color = 'rgba(150, 150, 150, 0.25)';\n    const angle = -Math.PI \/ 6;\n\n    ctx.font = font;\n    ctx.fillStyle = color;\n    ctx.textAlign = 'center';\n    ctx.textBaseline = 'middle';\n    ctx.rotate(angle);\n\n    let x = 0;\n    let y = 0;\n\n    var line = watermarkText.split('||')\n\n    const textWidth = Math.max(...line.map(l =&gt; ctx.measureText(l).width));\n    const textHeight = fontSize * 1.8; \n    \n    \/\/ \u8c03\u6574x\u7684\u8d77\u59cb\u4f4d\u7f6e\u548c\u589e\u91cf\u4ee5\u9002\u5e94\u5c4f\u5e55\u5bbd\u5ea6\n    x = -canvasWidth \/ 2;\n    while (x &lt; canvasWidth + textWidth) {\n        y = -canvasHeight \/ 2;\n        \/\/ \u8c03\u6574y\u7684\u8d77\u59cb\u4f4d\u7f6e\u548c\u589e\u91cf\u4ee5\u9002\u5e94\u5c4f\u5e55\u9ad8\u5ea6\n        while (y &lt; canvasHeight + textHeight) {\n            for (let i = 0; i &lt; line.length; i++) {\n                ctx.fillText(line&#91;i], x, y + i * textHeight);\n            }\n            y += textHeight + 80; \/\/ \u589e\u52a0\u6c34\u5e73\u95f4\u8ddd\n        }\n        x += textWidth + 80; \/\/ \u589e\u52a0\u5782\u76f4\u95f4\u8ddd\n    }\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-orange-color\">2\u3001app.vue<\/mark><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;template&gt;\n  &lt;el-main class=\"framework-main wm-container\"&gt;\n    &lt;router-view class=\"content\"&gt;&lt;\/router-view&gt;\n    &lt;canvas ref=\"WMCanvas\" id=\"WMCanvas\"&gt;&lt;\/canvas&gt;\n  &lt;\/el-main&gt;\n&lt;\/template&gt;\n\n&lt;script setup lang=\"ts\"&gt;\nimport { addWatermark } from '@\/utils\/watermark'\n\nonMounted(() =&gt; {\n  const waterMarkText = `xxxx||===`\n  if (WMCanvas.value) {\n    \/\/ \u6dfb\u52a0\u6c34\u5370\u5e76\u76d1\u542c\u7a97\u53e3\u5927\u5c0f\u53d8\u5316\n    addWatermark(WMCanvas.value, waterMarkText)\n    window.addEventListener('resize', () =&gt; {\n      const canvas = document.getElementById('WMCanvas') as HTMLCanvasElement\n      if (canvas) {\n        const ctx = canvas.getContext('2d')\n        if (ctx) {\n          ctx.clearRect(0, 0, canvas.width, canvas.height)\n        }\n        addWatermark(canvas, waterMarkText)\n      }\n    })\n\n    \/\/ MutationObserver\u5b9e\u4f8b\u76e3\u807d\u6a23\u5f0f\u662f\u5426\u6539\u8b8a\n    observer = new MutationObserver((mutations) =&gt; {\n      mutations.forEach((mutation) =&gt; {\n        if (mutation.type === 'attributes') {\n          \/\/ \u5224\u65ad\u662f\u5426\u662fstyle\u5c5e\u6027\u7684\u53d8\u5316\n          if (mutation.attributeName === 'style') {\n            if (WMCanvas.value) {\n              addWatermark(WMCanvas.value, waterMarkText)\n            }\n          }\n        } else if (mutation.type === 'childList') {\n          \/\/ \u5982\u679c\u5b50\u8282\u70b9\u6709\u53d8\u5316\uff08\u6bd4\u5982canvas\u88ab\u5220\u9664\uff09\uff0c\u91cd\u65b0\u63d2\u5165canvas\n          if (WMCanvas.value &amp;&amp; !WMCanvas.value.parentElement) {\n            const parent = document.querySelector('.wm-container')\n            if (parent) {\n              parent.appendChild(WMCanvas.value)\n              \/\/ \u91cd\u65b0\u6dfb\u52a0\u6c34\u5370\n              addWatermark(WMCanvas.value, waterMarkText)\n            }\n          }\n        }\n      })\n    })\n\n    \/\/ \u914d\u7f6e\u89c2\u5bdf\u9009\u9879\n    const config = { attributes: true, childList: true, subtree: true }\n\n    \/\/ \u5f00\u59cb\u89c2\u5bdf\n    observer.observe(document.querySelector('.wm-container') ?? document.body, config)\n  }\n  \/\/ })\n})\nonUnmounted(() =&gt; {\n  \/\/ \u7ec4\u4ef6\u5378\u8f7d\u65f6\u505c\u6b62\u89c2\u5bdf\n  if (observer) {\n    observer.disconnect()\n  }\n})\n&lt;\/script&gt;\n\n&lt;style lang=\"scss\" scoped&gt;\n.wm-container {\n  position: relative;\n}\n&lt;\/style&gt;\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u4f7f\u7528\u5de5\u5177\uff081\uff09\u3001Vue3+Vite+TS \u7ec4\u4ef6\u529f\u80fd\uff1a\uff081\uff09\u6c34\u5370\u5c06\u60ac\u6d6e\u4e8e\u5bf9\u5e94\u533a\u57df\u7684\u9876\u90e8\uff0c\u4f46\u5e76\u4e0d\u4f1a\u5f71\u54cd\u9875\u9762\u5176\u4ed6do [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":795,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-790","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-other"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>VUE3+TS \u6c34\u5370\u7ec4\u4ef6 - YW<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/www.xinsk.cn\/?p=790\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"VUE3+TS \u6c34\u5370\u7ec4\u4ef6 - YW\" \/>\n<meta property=\"og:description\" content=\"\u4f7f\u7528\u5de5\u5177\uff081\uff09\u3001Vue3+Vite+TS \u7ec4\u4ef6\u529f\u80fd\uff1a\uff081\uff09\u6c34\u5370\u5c06\u60ac\u6d6e\u4e8e\u5bf9\u5e94\u533a\u57df\u7684\u9876\u90e8\uff0c\u4f46\u5e76\u4e0d\u4f1a\u5f71\u54cd\u9875\u9762\u5176\u4ed6do [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"http:\/\/www.xinsk.cn\/?p=790\" \/>\n<meta property=\"og:site_name\" content=\"YW\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-15T08:25:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-16T02:49:17+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/04\/16704674854784384.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"890\" \/>\n\t<meta property=\"og:image:height\" content=\"501\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Randy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"Randy\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790\"},\"author\":{\"name\":\"Randy\",\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/#\\\/schema\\\/person\\\/9b38368d42dd4db5d104a3df4deda634\"},\"headline\":\"VUE3+TS \u6c34\u5370\u7ec4\u4ef6\",\"datePublished\":\"2025-04-15T08:25:06+00:00\",\"dateModified\":\"2025-04-16T02:49:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790\"},\"wordCount\":11,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/#\\\/schema\\\/person\\\/9b38368d42dd4db5d104a3df4deda634\"},\"image\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.xinsk.cn\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/16704674854784384.webp\",\"articleSection\":[\"\u5176\u4ed6\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/www.xinsk.cn\\\/?p=790#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790\",\"url\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790\",\"name\":\"VUE3+TS \u6c34\u5370\u7ec4\u4ef6 - YW\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790#primaryimage\"},\"image\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.xinsk.cn\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/16704674854784384.webp\",\"datePublished\":\"2025-04-15T08:25:06+00:00\",\"dateModified\":\"2025-04-16T02:49:17+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.xinsk.cn\\\/?p=790\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790#primaryimage\",\"url\":\"http:\\\/\\\/www.xinsk.cn\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/16704674854784384.webp\",\"contentUrl\":\"http:\\\/\\\/www.xinsk.cn\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/16704674854784384.webp\",\"width\":890,\"height\":501},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/?p=790#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"http:\\\/\\\/www.xinsk.cn\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"VUE3+TS \u6c34\u5370\u7ec4\u4ef6\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/#website\",\"url\":\"http:\\\/\\\/www.xinsk.cn\\\/\",\"name\":\"YW\",\"description\":\"Trying to be better\",\"publisher\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/#\\\/schema\\\/person\\\/9b38368d42dd4db5d104a3df4deda634\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/www.xinsk.cn\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/#\\\/schema\\\/person\\\/9b38368d42dd4db5d104a3df4deda634\",\"name\":\"Randy\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/cropped-pic7.jpg\",\"url\":\"http:\\\/\\\/www.xinsk.cn\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/cropped-pic7.jpg\",\"contentUrl\":\"http:\\\/\\\/www.xinsk.cn\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/cropped-pic7.jpg\",\"width\":214,\"height\":214,\"caption\":\"Randy\"},\"logo\":{\"@id\":\"http:\\\/\\\/www.xinsk.cn\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/cropped-pic7.jpg\"},\"sameAs\":[\"http:\\\/\\\/106.15.105.35\"],\"url\":\"http:\\\/\\\/www.xinsk.cn\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"VUE3+TS \u6c34\u5370\u7ec4\u4ef6 - YW","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":"http:\/\/www.xinsk.cn\/?p=790","og_locale":"zh_CN","og_type":"article","og_title":"VUE3+TS \u6c34\u5370\u7ec4\u4ef6 - YW","og_description":"\u4f7f\u7528\u5de5\u5177\uff081\uff09\u3001Vue3+Vite+TS \u7ec4\u4ef6\u529f\u80fd\uff1a\uff081\uff09\u6c34\u5370\u5c06\u60ac\u6d6e\u4e8e\u5bf9\u5e94\u533a\u57df\u7684\u9876\u90e8\uff0c\u4f46\u5e76\u4e0d\u4f1a\u5f71\u54cd\u9875\u9762\u5176\u4ed6do [&hellip;]","og_url":"http:\/\/www.xinsk.cn\/?p=790","og_site_name":"YW","article_published_time":"2025-04-15T08:25:06+00:00","article_modified_time":"2025-04-16T02:49:17+00:00","og_image":[{"width":890,"height":501,"url":"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/04\/16704674854784384.webp","type":"image\/webp"}],"author":"Randy","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"Randy","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/www.xinsk.cn\/?p=790#article","isPartOf":{"@id":"http:\/\/www.xinsk.cn\/?p=790"},"author":{"name":"Randy","@id":"http:\/\/www.xinsk.cn\/#\/schema\/person\/9b38368d42dd4db5d104a3df4deda634"},"headline":"VUE3+TS \u6c34\u5370\u7ec4\u4ef6","datePublished":"2025-04-15T08:25:06+00:00","dateModified":"2025-04-16T02:49:17+00:00","mainEntityOfPage":{"@id":"http:\/\/www.xinsk.cn\/?p=790"},"wordCount":11,"commentCount":0,"publisher":{"@id":"http:\/\/www.xinsk.cn\/#\/schema\/person\/9b38368d42dd4db5d104a3df4deda634"},"image":{"@id":"http:\/\/www.xinsk.cn\/?p=790#primaryimage"},"thumbnailUrl":"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/04\/16704674854784384.webp","articleSection":["\u5176\u4ed6"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/www.xinsk.cn\/?p=790#respond"]}]},{"@type":"WebPage","@id":"http:\/\/www.xinsk.cn\/?p=790","url":"http:\/\/www.xinsk.cn\/?p=790","name":"VUE3+TS \u6c34\u5370\u7ec4\u4ef6 - YW","isPartOf":{"@id":"http:\/\/www.xinsk.cn\/#website"},"primaryImageOfPage":{"@id":"http:\/\/www.xinsk.cn\/?p=790#primaryimage"},"image":{"@id":"http:\/\/www.xinsk.cn\/?p=790#primaryimage"},"thumbnailUrl":"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/04\/16704674854784384.webp","datePublished":"2025-04-15T08:25:06+00:00","dateModified":"2025-04-16T02:49:17+00:00","breadcrumb":{"@id":"http:\/\/www.xinsk.cn\/?p=790#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.xinsk.cn\/?p=790"]}]},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"http:\/\/www.xinsk.cn\/?p=790#primaryimage","url":"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/04\/16704674854784384.webp","contentUrl":"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/04\/16704674854784384.webp","width":890,"height":501},{"@type":"BreadcrumbList","@id":"http:\/\/www.xinsk.cn\/?p=790#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"http:\/\/www.xinsk.cn\/"},{"@type":"ListItem","position":2,"name":"VUE3+TS \u6c34\u5370\u7ec4\u4ef6"}]},{"@type":"WebSite","@id":"http:\/\/www.xinsk.cn\/#website","url":"http:\/\/www.xinsk.cn\/","name":"YW","description":"Trying to be better","publisher":{"@id":"http:\/\/www.xinsk.cn\/#\/schema\/person\/9b38368d42dd4db5d104a3df4deda634"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/www.xinsk.cn\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":["Person","Organization"],"@id":"http:\/\/www.xinsk.cn\/#\/schema\/person\/9b38368d42dd4db5d104a3df4deda634","name":"Randy","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/02\/cropped-pic7.jpg","url":"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/02\/cropped-pic7.jpg","contentUrl":"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/02\/cropped-pic7.jpg","width":214,"height":214,"caption":"Randy"},"logo":{"@id":"http:\/\/www.xinsk.cn\/wp-content\/uploads\/2025\/02\/cropped-pic7.jpg"},"sameAs":["http:\/\/106.15.105.35"],"url":"http:\/\/www.xinsk.cn\/?author=1"}]}},"_links":{"self":[{"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=\/wp\/v2\/posts\/790","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=790"}],"version-history":[{"count":6,"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=\/wp\/v2\/posts\/790\/revisions"}],"predecessor-version":[{"id":797,"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=\/wp\/v2\/posts\/790\/revisions\/797"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=\/wp\/v2\/media\/795"}],"wp:attachment":[{"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=790"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=790"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.xinsk.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=790"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}