我熟悉使用jQuery的$.ajax
:
$.ajax({
url: //twitter endpoint,
method:"GET",
dataType:"jsonp",
success:function() {
//stuff
}
});
如何为JSONP
有角度的$http
服务请求指定$http.get({
url: //twitter endpoint,
dataType: "jsonp",
success: function(){
//stuff
}
});
数据类型?
{{1}}
虽然没有奏效。有什么想法吗?
答案 0 :(得分:6)
您始终可以使用$http.jsonp(url).success(function() {} );
答案 1 :(得分:0)
试试这个:
$http({
method: 'JSONP',
url: '/someUrl?cb=JSON_CALLBACK'
}).then(function (response) {
// stuff
});