这个YQL错误是什么意思?

时间:2014-11-07 11:47:45

标签: terminal yql url-encoding

让我问一下很短的比较过去的问题。

我从YQL CONSOLE获得的结果不是我的终端。

以下是我的代码。

new YQL.exec('select * from html where url="http://fortune.daum.net/external/4/run/star_free/index.php" and xpath="//td[contains(@style,"font-family:굴림; font-size:12px; color:#333333; line-height:18px; padding-right:10px")]/"', function(response) {

console.log(response);
//response consists of JSON that you can parse
if (response.error) {
    console.log('error');
}
else {
    //var location  = response.query.results.result;
    var location  = response.query.results.result;
    console.log(location);
}

});

1 个答案:

答案 0 :(得分:1)

您似乎错误地使用了多级引号,请尝试以下内容:

new YQL.exec('select * from html where url="http://fortune.daum.net/external/4/run/star_free/index.php" and xpath="//td[contains(@style,\'font-family:굴림; font-size:12px; color:#333333; line-height:18px; padding-right:10px\')]"')