我有以下脚本,我的问题是在脚本之后给出的。
<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票。
那么如何动态更改脚本呢?