我需要在otcmarkets.com上解析一组给定股票的资产负债表数据。我正在尝试使用Google Spreadsheet中的importXML函数,但它并没有为我返回任何数据。 xPath查询未返回任何数据。这是我正在使用的功能:
=importxml("http://www.otcmarkets.com/stock/AAEH/financials","//*[@id=’totalCurrentLiabilities’]")
让我知道我做错了什么,以及是否有更好的方法来解析特定的资产负债表数据。
答案 0 :(得分:2)
页面内容使用JavaScript加载,而不是在Google Spreadsheets中执行。您无法使用=importxml(...)
解析此页面。
现在该怎么办?
答案 1 :(得分:0)
尝试使用importdata函数:
=IMPORTDATA("http://www.otcmarkets.com/otciq/ajax/EdgarFinancialsController.json?ticker=AAEH&mode=annual")