我正在从 url 请求 JSON 数据,但它给出的错误为
GET http://localhost:10560/[object%20Object] 404(未找到)
var mydata;
$.getJSON({
url: 'http://free.worldweatheronline.com/feed/weather.ashx?q=City,Country&callback=?&format=json&num_of_days=2&key=1111111111111111',
dataType: 'json',
success: function (data) {
mydata = data;
console.log(mydata);
}
});
如何获取json文件并解析它?