我根本无法弄清楚这一点。
我当前的 json 结果如下console.log(json)
我想知道是否有人可以帮助我检索 Condition 部分?
编辑
var geoFORECAST = 'http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid=%2726344339%27%20and%20u=%27c%27&format=json';
$.getJSON(geoFORECAST, function(json) {
console.log(json);
console.log(json.query.results.item.condition.text);
});