如何在角度$ http服务请求中将JSONP指定为dataType?

时间:2013-11-20 20:46:32

标签: javascript ajax http angularjs

我熟悉使用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}}

虽然没有奏效。有什么想法吗?

2 个答案:

答案 0 :(得分:6)

您始终可以使用$http.jsonp(url).success(function() {} );

$http.jsonp

答案 1 :(得分:0)

试试这个:

$http({
  method: 'JSONP',
  url: '/someUrl?cb=JSON_CALLBACK'

}).then(function (response) {
  // stuff
});