我必须加载 json 数据,这些数据在其他域上可用,我将如何做到这一点



>我必须加载json数据,这些数据在其他上可用,我将如何做,Json数据的格式是

[
            {
                "siteName": "JQUERY4U",
                "domainName": "http://www.jquery4u.com",
                "description": "#1 jQuery Blog for your Daily News, Plugins, Tuts/Tips & Code Snippets."
            },
            {
                "siteName": "BLOGOOLA",
                "domainName": "http://www.blogoola.com",
                "description": "Expose your blog to millions and increase your audience."
            },
            {
                "siteName": "PHPSCRIPTS4U",
                "domainName": "http://www.phpscripts4u.com",
                "description": "The Blog of Enthusiastic PHP Scripters"
            }
]

我想通过Jquery读取json文件,我将如何做到这一点

你可以在Jquery的$.ajax()方法或带有回调的$.getJSON中使用jsonp作为数据类型

使用 $.ajax

$.ajax({
            type: "GET",
            url: your_link,
            dataType: "jsonp", 
            success: function(data){
               //do something here                      
                }
            }
            error : function(data){
                      console.log(data);
                     }
        });

使用 $.getJSON

要触发 JSONP 请求,您需要在 URL 末尾添加 callback_name=? 字符串。

$.getJSON( "https://your_domain.com?callback=?", function( data ){
  console.log( data.title ); // log data here
});

相关内容

  • 没有找到相关文章