我想知道以下公式是否正确?
= IMPORTXML(" http://publications.elia.be/Publications/Publications/ImbalanceNrvPrice.v1.svc/GetImbalanceNrvPrices?day=2014-04-14"," // PNeg")
它给出了错误#N/A
,但是一些谷歌搜索告诉我importxml
是一个善变的事情。它应该导入一个包含24个值的列表,从57.48
开始,但由于我收到错误,我只想确定问题是由函数引起的,而不是由于我的xpath_query错误,因为这是第一个我试过这样的事情。
答案 0 :(得分:0)
我成功用“
解析所有文件jQuery.ajax({
url: the_ajax_script.ajaxurl,
dataType: 'json',
cache: false,
contentType: false,
processData: false,
data: form_data,
type: 'post',
action: 'ac_ajax_save_product_alt',
success: function( response ) {
alert(JSON.parse(response).success);
}
});
和你的选择器:
//*
必须有效,但there is error in Column: 190 Error: Can not find declaration of element 'ImbalanceNrvPriceResponse'. - 可能就是这个原因。
答案 1 :(得分:0)
这有效:
=transpose(regexextract(importdata("http://publications.elia.be/Publications/Publications/ImbalanceNrvPrice.v1.svc/GetImbalanceNrvPrices?day=2014-04-14"),rept("<PNeg>(.*)<\/PNeg>.*",96)))