2014-11-07 3 views
-1

나는 아주 짧은 비교 과거 질문을하게한다.이 YQL 오류는 무엇을 의미합니까?

내 터미널이 아닌 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

당신이 잘못 멀티 레벨 인용 부호가 보인다, 아래 시도 :

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\')]"')