我只是一个简短的问题:
当前场景:
我想从网页“导入”数据。手动,我去网站,按 Ctrl + a (复制该网页上的所有内容),然后将数据粘贴到当前电子表格的A1
问题:是否可以使用谷歌应用脚本实现“转到网页并按 Ctrl + a ”部分?如果是这样的话:怎么样?
所有帮助都表示感谢,并感谢您的提前时间。
答案 0 :(得分:0)
UrlFetchApp是等同的。
function myFunction() {
var url = 'http://stackoverflow.com/questions/22670339/import-data-from-webpage-with-google-app-script';
var response = UrlFetchApp.fetch(url);
var text = response.getContentText();
Logger.log(text);
// Figure out how to parse the text
// Write to the ss
}