0

如何连接restful Web Services + 电话差距。请提供示例演示。

4

2 回答 2

0
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?",
    function(data){
      $.each(data.items, function(i,item){
        $("<img/>").attr("src", item.media.m).appendTo("#images");
        if ( i == 3 ) return false;
      });
    });
于 2013-07-02T11:33:53.697 回答
0

试试这个样本

$.ajax({
    url: Your_webservice_url,
    type: "GET",
    data: {
        ModifiedSince: modifiedSince
    },
    dataType: "json",
    success: function(data) {
        console.log("The server returned " + data.length);
        //Play with the received json data.
    },
    error: function(model, response) {
        alert("Web service error: " + response.responseText);
    }
});
于 2013-07-02T09:13:36.250 回答