0

このサイトで API jquery.rest を使用したい(たとえば)、コンソールで何でも実行します。ここに私のスクリプトがあります

 var client = new $ RESTClient ('http://api.openweathermap.org/data/2.5/weather?lat=35&lon=139');
 client.show ();

コンソールに何も表示されない

4

3 に答える 3

0

ミルクセーキの応答は、あなたが求めているものです。-ちょうどあなたのニーズに合わせて、私はあなたの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!");
      });
于 2013-08-02T13:55:49.990 に答える