【发布时间】:2019-09-02 01:38:50
【问题描述】:
我之前使用 =IMPORTXML(J1,"//*[@id='afd-header-views-30d']") 从网站 socialblade.com 导入了数据。但是现在我想导入一串数字过去一个月的浏览量,我不知道怎么做,网站的源代码是这样的:
<div id="AverageViewsPerMonth" style = "width: 860px; height: 160px; padding-top: 10px;"></div>
<script type="text/javascript">
g = new Dygraph(
// containing div
document.getElementById('AverageViewsPerMonth'),
// CSV or path to a CSV file.
"Date,Monthly Views\n" + "2016-10-1,6338035\n" + "2016-11-1,3005749\n" + "2016-12-1,2951816\n" + "2017-01-1,3185303\n" + "2017-02-1,3849745\n" + , {
title: 'Total Views Per Month for Peaceful Cuisine ',
这是一个任何人都可以编辑的 Google 电子表格:
https://docs.google.com/spreadsheets/d/1DjZbiUy6P2L2i2INoN1c0tAZsAeCBmM3-PSXp9E0JFw/edit?usp=sharing
如果有人能告诉我如何使用这样的社交刀片链接示例,我将不胜感激:
【问题讨论】:
标签: web-scraping google-sheets google-sheets-formula google-sheets-query google-sheets-importxml