= importhtml Google表格多个错误消息

时间:2016-01-14 16:35:14

标签: html excel google-sheets

尝试从同一网站的两个页面抓取数据,以研究二级礼品卡市场。

注意:必须更改语法,因为我的代表太低而无法发布多个链接。帖子的底部有一把钥匙。

class Singleton{
private:
    Singleton();
    static Singleton instance;

public:
    Singleton & GetInstance(){
        return instance;
    }
}

这两个都有效,但是当我尝试时:

=IMPORTHTML("http://www.giftcardgranny.com/sell-a-gift-card-old/","table", 1)
&
=IMPORTHTML("http://www.giftcardgranny.com/sell-a-gift-card-old/","table", 2)

我收到了从=importhtml("http://www.giftcardgranny.com/top-deals/","table",1) Imported content is empty的不同错误消息,似乎是随机出现的。

我已经研究了很多,我知道自从2015年早期/中期更新后这个公式已经出错了,但是我想我可能因为第二个URL上的分页而没有分页而无法正常工作在第一个网址上?

1 个答案:

答案 0 :(得分:0)

查看两个页面的来源,sell-a-gift-card-old页面构建为HTML格式的表格,这就是它的工作原理。 top-deals页面数据保存在JavaScript数组中,因此您需要使用其他方法来获取信息。它返回空,因为 没有要返回的表。