如何获取元标记内容值并取平均值

How to get meta tag content values and average them

我在一个网站上工作,该网站使用 Schema.org 微数据作为结构化内容产品列表,显然 Google 需要对所有评论进行综合评分。我怎样才能抓住所有的 <meta itemprop="ratingValue" content="#" /> 标签,然后将它们平均成一个变量,我可以输出到:

<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
  <meta itemprop="ratingValue" content="average #" />
  <meta itemprop="reviewCount" content="# reviews" />
</div> 

使用 JQuery 还是 JavaScript? (其中 # = 评级值)

是的,使用 jQuery 并不难。此代码将获取所有元内容,将它们转换为整数,找到平均评分,然后在 head 元素的底部附加一些 HTML

// first gather all the meta elements with an itemprop value of "ratingValue"
var metas = $('meta[itemprop="ratingValue"]').get();

// convert the content values of these elements to integers and put them in an array
var ratings = metas.map((m) => ~~m.content);

// calculate and round the average rating value
var average = ~~(ratings.reduce((a,b) => a + b) / ratings.length + 0.5);

// create the HTML for the aggregateRating parent div
var aggregateRating = '<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">';

// create ratingValue meta HTML using the average rating
var ratingValue = '<meta itemprop="ratingValue" content="average ' + average + '" />';

// create aggregateRating meta HTML using the rating count
var reviewCount = '<meta itemprop="reviewCount" content="' + ratings.length + ' reviews" />';

// combine these strings and a closing tag, then append the HTML to the end of head
$('head').append(aggregateRating + ratingValue + reviewCount + '</div>');

或者您甚至可以使用 Bernard 方法

$('head').append(['<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">', '</div>'].join([
  ['ratingValue', 'average ' + ~~((r = $('meta[itemprop="ratingValue"]').get().map((m) => ~~m.content)).reduce((a, b) => a + b) / r.length + .5)],
  ['reviewCount', r.length + ' reviews']
].map((a, b) => ['<meta itemprop="', '" content="', '">'].map((c, d) => [c, a[d]]))).replace(/,/g, ''));

var aggregates = document.querySelectorAll("[itemprop='aggregateRating'");
var scores = 0;
var n = 0;

for (var i = 0; i < aggregates.length; i++) {
  scoreCurr = parseFloat(aggregates[i].querySelector("[itemprop='ratingValue']").getAttribute("content"));
  nCurr = parseFloat(aggregates[i].querySelector("[itemprop='reviewCount']").getAttribute("content"));
  scores += scoreCurr;
  n += nCurr;
}

alert(scores/n);
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
  <meta itemprop="ratingValue" content="35" />
  <meta itemprop="reviewCount" content="7" />
</div>

<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
  <meta itemprop="ratingValue" content="42" />
  <meta itemprop="reviewCount" content="10" />
</div>