如何为Schema type = Product动态更新JSON-LD脚本

时间:2017-01-04 07:13:00

标签: json product schema.org rating json-ld

我有以下脚本,我的问题是在脚本之后给出的。

 <script type="application/ld+json">
 {
  "@context": "http://schema.org/",
  "@type": "Product",
  "name": "Coffee Mug",

  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.9",
    "ratingCount": "77"
  },
  "offers": {
    "@type": "AggregateOffer",
    "lowPrice": "5.76",
    "highPrice": "8",
    "availability": "http://schema.org/InStock",
    "priceCurrency": "USD"
  }
}

我想确保一旦星级评分发生变化,也应该在脚本中进行更改。

那么请你告诉我怎么做?

我的问题是:

我正在使用小工具进行星级评分。 目前共有77票,综合评分为4.9分。

假设我获得3张选票,总票评为8票中的4.8票。

那么如何动态更改脚本呢?

0 个答案:

没有答案