Josnp跨域访问总执行error

前端之家收集整理的这篇文章主要介绍了Josnp跨域访问总执行error前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$.ajax({
        url: "http://timer.com/timer1?refresh=" + new Date().getTime(),type: "GET",crossDomain: true,dataType: 'jsonp',async: false,jsonp:'callback'
        success: function(data){
            console.log(err);
        },error: function (xhr,status,err){
            console.log(err);
        }
    });
总进入error,是因为返回的json串格式不对,后台必须返回如:xxxxx({"name":"value","name":"value"}) 格式串,其中xxxxx是callback的方法名。 原文链接:https://www.f2er.com/json/289187.html

猜你在找的Json相关文章