我尝试使用googlesheet从this site抓取以下内容属性。不幸的是,我能想到的每一个变化似乎都失败了
<span itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating">
<span itemprop="ratingValue" content="3.5"></span>
<span itemprop="ratingCount" content="12"></span>
<span itemprop="reviewCount" content="12"></span>
</span>
我希望提取值3.5,12和&amp; 12使用
=importxml(A2,//*[@id='topOnProduct']/div[2]/span/span[1])
=importxml(A2,//*[@id='topOnProduct']/div[2]/span/span[1]@content)
=importxml(A2,"//span[@itemprop='ratingValue']/@content")
以及相应属性的大约50个其他变体 - 我也没有使用kiimono的喜悦。任何人都可以告诉我哪里出错了/告诉我如何实现这个目标