这是我的代码
var app = angular.module('myApp', []);
app.config(function($httpProvider) {
$httpProvider.defaults.useXDomain = true;
delete $httpProvider.defaults.headers.common['X-Requested-With'];
});
app.controller('MainCtrl', function($scope, $http) {
$scope.get = function() {
$http.get("http://dev.fantasysportsnetwork.com/?feed=mobile").success(function(result) {
console.log("Success", result);
$scope.resultGet = result;
}).error(function() {
console.log("error");
});
};
});
当我运行此代码时,我遇到了跨域问题。当我将$ http.get更改为$ http.jsonp时,数据被提取但仍然出现错误,因为url返回xml提要。任何人都可以帮我解决这个问题。