在我的离子应用中的方法如下所述
.factory('userProdDetails', function ($http) {
return {
getProdDetails: function () {
return $http.post('http://192.xxx.x.2x4/filter_app.cgi', { "act": "Del", "oid": 1 }).then(function (response) {
alert(JSON.stringify(response));
return response;
}, function (error) {
console.log(error);
});
}
}
})
我在控制台中收到以下错误:
选项http://xxx.xxx.x.25x/filter_app.cgi(匿名函数) XMLHttpRequest无法加载http://xxx.xxx.x.25x/filter_app.cgi。 预检的响应包含无效的HTTP状态代码501
错误对象摘要:
Object {data:null,status:0,config:Object,statusText:“”}
你能帮我解决这个错误的原因是什么,我错过了什么吗?