json-ld 相关问题

JSON-LD是一种基于JSON的格式,用于序列化关联数据。该语法旨在轻松集成到已使用JSON的已部署系统中,并提供从JSON到JSON-LD的平滑升级路径。它主要用于在基于Web的编程环境中使用关联数据,构建可互操作的Web服务以及在基于JSON的存储引擎中存储关联数据。

富媒体搜索结果测试 URL 已成功爬网,但未检测到项目

我将 URL 粘贴到 Rich Results 测试中,它已成功抓取,但返回“No Items Detected”。 如果我复制 html 内容并将其粘贴到其中,则会正确显示 JobPosting。 例如我们...

回答 1 投票 0

在 FIWARE NGSI-LD 中设计和注册命令以从 URL 下载数据

我正在与 FIWARE 合作,特别是与 NGSI-LD 合作。我的目标是创建一个执行器,我可以向其发送命令以从 URL 下载信息。 为了实现这一目标,我想设计...

回答 1 投票 0

在 IoT 代理中创建执行器设备时出错 (FIWARE | NGSI-LD)

正如标题中提到的,我正在与 FIWARE 合作,特别是与 NGSI-LD 合作。为此,我使用 Docker Compose 部署了一系列容器:ld-context(这是要提供的容器

回答 1 投票 0

有人能发现这个 json-ld 脚本有什么问题吗? Wix 实现

我正在尝试将此 json-ld 块应用到 Wix 网站,但它一直拒绝它。 我知道它并不漂亮,但它已经通过了丰富的结果测试和模式测试。 无法弄清楚什么...

回答 1 投票 0

如何删除子组件layout.tsx中父组件的script标签?

我正在使用 next.js 的应用程序路由器。 我想为两个页面“/blog”和“/blog/[searchKeyword]”添加 jsonLd 数据。 但我在这个过程中遇到了一些问题。 博客 > 布局...

回答 1 投票 0

何时在结构化数据标记中包含 URL?

我无法确定何时在 json-ld 中添加 https://schema.org/。 问题 对于结构化数据属性,例如 @type 或 itemCondition,这是正确的格式: “@类型”:&

回答 1 投票 0

如何在 JSON-LD 中编码变音符号?

在 JSON-LD 值中,我有德语字符 öäüß - 公司名称、地址等。 它们应该以某种方式编码吗?与 RFC1738 一样,öäüß -> %C3%B6%C3%A4%C3%BC%C3%9F 还是不需要?

回答 1 投票 0

在没有yoast的情况下将手动模式(丰富片段)代码添加到wordpress网站(模板)

我们正在为内容相关(文章、视频)网站之一进行 SEO,并使用 WordPress 模板来构建网站。现在,如果我使用 yoast 生成的架构,标准网页架构是......

回答 2 投票 0

如何纠正我的 JSON-LD 语法以获得所需的扩展?

上下文 我正在尝试收集一组需求并以 JSON-LD 格式记录它们。 JSON-LD 文档将作为配置文件在短期内驱动自动化数据分析。我...

回答 1 投票 0

如何外部化 json-ld 并包含在 html 文档中

是否可以外部化 json-ld 并将其包含在 html 文档中,如下所示: 没有...

回答 2 投票 0

将巨大的链接数据转储(RDF/XML、JSON-LD、TTL)转换为 TSV/CSV

链接数据集合通常以 RDF/XML、JSON-LD 或 TTL 格式给出。相对较大的数据转储似乎相当难以处理。将 RDF/XML 文件转换为

回答 4 投票 0

JSON LD 数据中 @ 的使用

在查看 JSON-LD 文档的示例时,我看到一些以 @ 开头的键。是否有任何规则规定哪些键应以 @ 开头? 在这个例子中,为什么人们会选择使用...

回答 1 投票 0

JSON-LD 中的本地业务和组织架构

我有一家本地企业,我有一个博客,我有服务。我是一名数字营销人员,您可以在这里查看我的架构:https://www.sitecentre.com.au(查看源代码)。大部分都在主页上,...

回答 1 投票 0

如何将 json-ld 添加到 Vue 3?

当尝试将 json-ld 脚本标签添加到传送到 HEAD 的部分时,Vue 3 编译器失败并出现以下错误: VueCompilerError:具有副作用的标签( 和 <styl...</desc> <question vote="4"> <p>当尝试将 json-ld 脚本标签添加到传送到 HEAD 的部分时,Vue 3 编译器失败并显示以下错误:</p> <p><pre><code>VueCompilerError: Tags with side effect (&lt;script&gt; and &lt;style&gt;) are ignored in client component templates.</code></pre></p> <p>模板:</p> <pre><code>&lt;template&gt; &lt;teleport to=&#34;head&#34;&gt; &lt;script type=&#34;application/ld+json&#34;&gt; { &#34;@context&#34;: &#34;https://schema.org&#34;, &#34;@type&#34;: &#34;WebSite&#34;, &#34;url&#34;: &#34;https://www.example.com/&#34;, &#34;potentialAction&#34;: { &#34;@type&#34;: &#34;SearchAction&#34;, &#34;target&#34;: &#34;https://query.example.com/search?q={search_term_string}&#34;, &#34;query-input&#34;: &#34;required name=search_term_string&#34; } } &lt;/script&gt; &lt;/teleport&gt; &lt;div&gt; Hello world! &lt;/div&gt; &lt;/template&gt; </code></pre> <p>如何在不安装额外依赖项的情况下添加此 json-ld 标签?</p> </question> <answer tick="true" vote="18"> <p>解决方法是使用 Vue 的 <a href="https://vuejs.org/api/built-in-special-elements.html#component" rel="nofollow noreferrer">内置 <pre><code>component</code></pre></a>(即 <pre><code>&lt;component :is=&#34;&#39;script&#39;&#34;&gt;</code></pre>)而不是 <pre><code>&lt;script&gt;</code></pre>:</p> <pre><code>&lt;template&gt; &lt;teleport to=&#34;head&#34;&gt; &lt;component :is=&#34;&#39;script&#39;&#34; type=&#34;application/ld+json&#34;&gt; { &#34;@context&#34;: &#34;https://schema.org&#34;, &#34;@type&#34;: &#34;WebSite&#34;, &#34;url&#34;: &#34;https://www.example.com/&#34;, &#34;potentialAction&#34;: { &#34;@type&#34;: &#34;SearchAction&#34;, &#34;target&#34;: &#34;https://query.example.com/search?q={search_term_string}&#34;, &#34;query-input&#34;: &#34;required name=search_term_string&#34; } } &lt;/component&gt; &lt;/teleport&gt; &lt;div&gt; Hello world! &lt;/div&gt; &lt;/template&gt; </code></pre> <p><a href="https://codesandbox.io/s/using-script-tags-in-vue-template-drl9c?file=/src/App.vue" rel="nofollow noreferrer">演示</a></p> <p><a href="https://i.sstatic.net/Jh6Gd.png" rel="nofollow noreferrer"><img src="https://cdn.txt58.com/i/AWkuc3N0YXRpYy5uZXQvSmg2R2QucG5n" alt="enter image description here"/></a></p> </answer> <answer tick="false" vote="0"> <p>这是Vue 3编译器的限制。它可以通过渲染函数来克服,例如在功能组件中:</p> <pre><code>const JsonLd = (props, { slots }) =&gt; h(&#39;script&#39;, { type: &#39;application/ld+json&#39; }, slots.default?.()); </code></pre> </answer> </body></html>

回答 0 投票 0

以 schema org json 格式插入变量

对于一个网站,我建立了模式组织,全部手工编写,如下所示: { “@context”:“https://schema.org”...</desc> <question vote="0"> <p>对于一个网站,我建立了架构组织,全部手工编写,如下所示:</p> <pre><code>&lt;script type=&#34;application/ld+json&#34;&gt; { &#34;@context&#34;: &#34;https://schema.org&#34;, &#34;@graph&#34;: [ { &#34;@type&#34;: &#34;MedicalOrganization&#34;, &#34;@id&#34;: &#34;https://example.com/#medicalorganization&#34;, &#34;isAcceptingNewPatients&#34;: &#34;True&#34;, ........ &lt;/script&gt; </code></pre> <p>问题是:</p> <p>可以在json中插入变量吗?那么并不是所有的东西都是硬编码的?例如对于网址:</p> <pre><code>&lt;script type=&#34;application/ld+json&#34;&gt; { &#34;@context&#34;: &#34;https://schema.org&#34;, &#34;@graph&#34;: [ { &#34;@type&#34;: &#34;MedicalOrganization&#34;, &#34;@id&#34;: &#34;{{variables.url}}/#medicalorganization&#34;, &#34;isAcceptingNewPatients&#34;: &#34;True&#34;, </code></pre> <p>有没有一种简单的方法,也涉及网络性能?</p> <p>我尝试导入 varibales.js 文件,但无法以 .json 格式访问它们</p> </question> <answer tick="false" vote="0"> <p>我想说你可以将 json 准备为纯文本。因此,您可以轻松地像这样放置变量:</p> <pre><code> $schema = &#39;&lt;script type=&#34;application/ld+json&#34;&gt; { &#34;@context&#34;: &#34;https://schema.org&#34;, &#34;@type&#34;: &#34;BlogPosting&#34;, &#34;headline&#34;: &#34;&#39; . $heading . &#39;&#34;, &#34;description&#34;: &#34;&#39; . $description . &#39;&#34;, &#34;image&#34;: &#34;&#39; . $imageUrl . &#39;&#34;, &#34;author&#34;: { &#34;@type&#34;: &#34;Organization&#34;, &#34;name&#34;: &#34;Some name&#34;, &#34;url&#34;: &#34;https://my-organization.com/contact&#34; }, &#34;publisher&#34;: { &#34;@type&#34;: &#34;Organization&#34;, &#34;name&#34;: &#34;publisher name&#34;, &#34;logo&#34;: { &#34;@type&#34;: &#34;ImageObject&#34;, &#34;url&#34;: &#34;https://my-organization.com/assets/img/logo/logo.jpg&#34; } }, &#34;datePublished&#34;: &#34;&#39; . $datePublished . &#39;&#34;, &#34;dateModified&#34;: &#34;&#39; . $dateModified . &#39;&#34; } &lt;/script&gt;&#39;; </code></pre> <p>之后您可以在任何您想要的地方使用<pre><code>$schema</code></pre>。</p> </answer> </body></html>

回答 0 投票 0

Python - rdflib - json-ld - 为什么它不解析嵌套的三元组

我有以下代码,解析下面的JSON-ld文件。但是,它只输出顶级三元组,而不输出其他三元组,例如网页的名称 从 rdflib 导入数据集 来自 rdflib。

回答 1 投票 0

Google 是否认可“组织”架构?

据我所知,Google 不支持组织架构。本地业务模式有效,但对于模式上的一些示例,组织模式仅被识别为本地业务模式...

回答 1 投票 0

Safari 解析“电话”上的 JSON-LD 错误 ('Object.prototype.hasOwnProperty.call(e,"telephone")')

自从我们为应用程序前端启用 Sentry(我们使用 TALL 堆栈构建)以来,我们从 Safari 浏览器中收到了很多错误。我无法复制。 首先我们得到了这样的错误 Safari

回答 1 投票 0

组织架构应该出现在每个页面上吗?

我正在尝试将架构添加到产品页面。 该产品是用于起重索具设备的卸扣。 然而,在页面的页脚中有该组织的地址,并且也在...

回答 1 投票 0

为什么 schema 中的 url 属性无效?

我正在尝试为下面给出的公司创建一个组织架构 但是,我收到错误 我已经在 Google Rich Results 测试工具上测试了以下代码 <p>我正在尝试为下面给出的公司创建一个组织架构 但是,我收到错误</p> <p>我已经在 Google Rich Results 测试工具上测试了以下代码</p> <pre><code>&lt;script type=&#34;application/ld+json&#34;&gt; { &#34;@context&#34;: &#34;https://schema.org&#34;, &#34;@type&#34;: &#34;Organization&#34;, &#34;name&#34;: &#34;Svibo Industries&#34;, &#34;url&#34;: &#34;https: //sviboindustries.in&#34;, &#34;logo&#34;: &#34;https://sviboindustries.in/wp-content/uploads/2023/04/svibo-1.png&#34;, &#34;image&#34;: &#34;https://sviboindustries.in/wp-content/uploads/2023/04/svibo-1.png&#34;, &#34;description&#34;: &#34;Svibo Industries is broadly involved in manufacturing and supplying all types of Wire Ropes. Svibo provides all types of wire rope constructions of all grades.&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;355&#34; }, &#34;areaServed&#34;: { &#34;@type&#34;: &#34;State&#34;, &#34;name&#34;: &#34;MH&#34; }, &#34;address&#34;: { &#34;@type&#34;: &#34;PostalAddress&#34;, &#34;streetAddress&#34;: &#34;111,112,113 Mahatma Phule Peth, Block No 101, Sevadham Building, 1st Floor, Pune, Maharashtra 411042&#34;, &#34;addressLocality&#34;: &#34;Pune&#34;, &#34;addressRegion&#34;: &#34;Maharashtra&#34;, &#34;postalCode&#34;: &#34;411042&#34;, &#34;addressCountry&#34;: &#34;India&#34; }, &#34;hasOfferCatalog&#34;: { &#34;@type&#34;: &#34;OfferCatalog&#34;, &#34;name&#34;: &#34;Products&#34;, &#34;itemListElement&#34;: [ { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Stainless Steel SS wire rope&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;38&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;PVC Coated wire rope&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;21&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Galvanized wire rope&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;10&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Ungalvanized wire rope&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;38&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Polythene Slings&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;40&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Chain Sling and Alloy Chain&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;40&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Chain Pulley Block&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;23&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Lifting and Chain Hooks&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;32&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Electric Chain Hoist&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;22&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Eye Bolt&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;15&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Mini Electric Hoist&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;32&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Pulley, Pulleys Block and Chain Wheel&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;56&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Pulling and Lifting Machine&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;21&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Hand Puller&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;10&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Ratchet Lever Lifting Hoist&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;32&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Plate Lifting Clamps&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;12&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Trolley&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;12&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Winches&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;32&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Shackles&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;40&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Wire Rope Clamps&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;31&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Wire Rope Thimble&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;42&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Turnbuckle&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;28&#34; } }, { &#34;@type&#34;: &#34;Product&#34;, &#34;name&#34;: &#34;Safety Items&#34;, &#34;aggregateRating&#34;: { &#34;@type&#34;: &#34;AggregateRating&#34;, &#34;ratingValue&#34;: &#34;4.9&#34;, &#34;reviewCount&#34;: &#34;15&#34; } } ] }, &#34;contactPoints&#34;: [ { &#34;@type&#34;: &#34;ContactPoint&#34;, &#34;telephone&#34;: &#34;+91 8208803755&#34;, &#34;contactType&#34;: &#34;Customer support&#34;, &#34;email&#34;: &#34;<a href="/cdn-cgi/l/email-protection" data-cfemail="4f262129200f3c39262d2026212b3a3c3b3d262a3c612c2022">[email protected]</a>&#34; }, { &#34;@type&#34;: &#34;ContactPoint&#34;, &#34;telephone&#34;: &#34;+91 7447449114&#34;, &#34;contactType&#34;: &#34;Customer support&#34; }, { &#34;@type&#34;: &#34;ContactPoint&#34;, &#34;telephone&#34;: &#34;+91 9637545481&#34;, &#34;contactType&#34;: &#34;Customer support&#34; } ] } &lt;/script&gt; </code></pre> <p>为什么会显示? 字段“url”的值类型无效</p> <p>支持的类型:[http://schema.org/URL]</p> <p>我应该使用什么值的url?</p> <p>网址的格式应该是什么?</p> </question> <answer tick="false" vote="0"> <p>该警告是由于空间原因。这是你的宣言:</p> <pre><code>&#34;url&#34;: &#34;https: //sviboindustries.in&#34;, </code></pre> <p>这是正确的声明:</p> <pre><code>&#34;url&#34;: &#34;https://sviboindustries.in&#34;, </code></pre> </answer> </body></html>

回答 0 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.