このサイトで API jquery.rest を使用したい(たとえば)、コンソールで何でも実行します。ここに私のスクリプトがあります
var client = new $ RESTClient ('http://api.openweathermap.org/data/2.5/weather?lat=35&lon=139');
client.show ();
コンソールに何も表示されない
このサイトで API jquery.rest を使用したい(たとえば)、コンソールで何でも実行します。ここに私のスクリプトがあります
var client = new $ RESTClient ('http://api.openweathermap.org/data/2.5/weather?lat=35&lon=139');
client.show ();
コンソールに何も表示されない
ミルクセーキの応答は、あなたが求めているものです。-ちょうどあなたのニーズに合わせて、私はあなたのjsonオブジェクトを文字列に変換しています-それであなたはより良いアイデアを得ることができます.
var URI = 'http://api.openweathermap.org/data/2.5/weather?lat=35&lon=139';
$.ajax({url:URI,dataType:"jsonp"})
.done(function(object){
//now you can access your object like any other json object e.g.
alert(JSON.stringify(object));
})
.fail(function(){
alert("oh no - something went wrong!");
});