我是angularJS的新手并且正在学习实现webservices。我有一个服务,我发布了' Post man'这是正常工作,但当我在我的角度代码中实现此服务,我在谷歌Chrome控制台上测试它给我状态405方法未找到错误。我不知道原因.Below是我正在使用的代码
var myApp = angular
.module('myApp',[])
.controller('MyController', function ($scope, $http) {
var parameter = JSON.stringify({search:''});
$http.post(url, parameter).then(function(response) {
alert(response.data);
});
});