'telephone' 属性 在 Schema.org 中的最佳价值
Best value for 'telephone' property in Schema.org
我正在向我的网页添加结构化数据,但找不到标准格式来填充 "telephone" 属性.
的值
我在不同的范围内使用电话属性:Organization
, ContactPoint
and Person
。
schema.org 以微数据格式提供的示例:
<div itemscope itemtype="http://schema.org/LocalBusiness">
<h1><span itemprop="name">Beachwalk Beachwear & Giftware</span></h1>
Phone: <span itemprop="telephone">850-648-4200</span>
</div>
schema.org 以 JSON-LD 格式提供的示例:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"address": {
"@type": "PostalAddress",
"addressLocality": "Paris, France",
"postalCode": "F-75002",
"streetAddress": "38 avenue de l'Opera"
},
"email": "secretariat(at)google.org",
"faxNumber": "( 33 1) 42 68 53 01",
"telephone": "( 33 1) 42 68 53 00"
}
</script>
示例来自 Google(公司联系人)
https://developers.google.com/search/docs/data-types/corporate-contact
An internationalized version of the phone number, starting with the "+" symbol and country code (+1 in the US and Canada).
所以 如果我的国际前缀是 +41 并且我的号码是 987654321,哪种格式最好?
- 0041-98-7654321
- (+41) 98 76 54 321
- +41987654321 = Google 风格
- 或者其他什么?
有标准吗?
每个国家/地区有 00 次更改,这就是他们引入 + 的原因。所以我会算出来。
不同国家/地区的数字格式不同。即破折号是美国的东西。所以我会避免任何格式字符。它们也与您输入的内容无关,因此在自动拨号时如果有任何内容可能会打断号码。
所以我只想说人们应该输入的数字:
+41987654321
在链接中使用 phone 数字也是如此。
我正在向我的网页添加结构化数据,但找不到标准格式来填充 "telephone" 属性.
的值我在不同的范围内使用电话属性:Organization
, ContactPoint
and Person
。
schema.org 以微数据格式提供的示例:
<div itemscope itemtype="http://schema.org/LocalBusiness">
<h1><span itemprop="name">Beachwalk Beachwear & Giftware</span></h1>
Phone: <span itemprop="telephone">850-648-4200</span>
</div>
schema.org 以 JSON-LD 格式提供的示例:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"address": {
"@type": "PostalAddress",
"addressLocality": "Paris, France",
"postalCode": "F-75002",
"streetAddress": "38 avenue de l'Opera"
},
"email": "secretariat(at)google.org",
"faxNumber": "( 33 1) 42 68 53 01",
"telephone": "( 33 1) 42 68 53 00"
}
</script>
示例来自 Google(公司联系人)
https://developers.google.com/search/docs/data-types/corporate-contact
An internationalized version of the phone number, starting with the "+" symbol and country code (+1 in the US and Canada).
所以 如果我的国际前缀是 +41 并且我的号码是 987654321,哪种格式最好?
- 0041-98-7654321
- (+41) 98 76 54 321
- +41987654321 = Google 风格
- 或者其他什么?
有标准吗?
每个国家/地区有 00 次更改,这就是他们引入 + 的原因。所以我会算出来。
不同国家/地区的数字格式不同。即破折号是美国的东西。所以我会避免任何格式字符。它们也与您输入的内容无关,因此在自动拨号时如果有任何内容可能会打断号码。
所以我只想说人们应该输入的数字:
+41987654321
在链接中使用 phone 数字也是如此。