我在Google Sheets IMPORTXML函数的XPath查询中苦苦挣扎。我正在尝试从this site获取表格。显然,仅使用//tr
可以给我网站上的所有表行。因为我想要一个特定的表,所以我需要表ID来向下钻取结果。
表ID(和类)如下:
<table class="leaguetable sortable table detailed-table fixed-wide-table" id="page_competition_1_block_competition_tables_7_block_competition_form_table_1_table">
查看我当前的功能并在此处查询。
=IMPORTXML("https://us.soccerway.com/national/england/premier-league/20182019/regular-season/r48730/","//table[@id='page_competition_1_block_competition_tables_7_block_competition_form_table_1_table']/tr")
在电子表格中使用此公式会给我#N/A
和错误消息Imported content is empty
。
我使用Chrome扩展程序测试了查询,它给了我想要的结果。但是很遗憾,该表格未显示在我的电子表格中。