405不允许的方法 - AngularJS HTTP

时间:2017-11-28 13:20:26

标签: php angularjs http httpresponse slim

我不明白为什么会这样:

AngularJS:

$http.post("/api/favorite", {
         params: {
             "param1": containerId
     }})

PHP(Slim Framwork):

$app->post('/api/favorite', function (Request $request, Response $response) {
    echo "testPostmanPat";
});

两者都是POST,甚至是标题: enter image description here

服务器日志:

  

INFO 2017-11-28 14:13:11,365 module.py:821] api:“ GET   / api / favorite HTTP / 1.1“405 556

无法找出为什么会发生这种情况?即使http是POST,服务器使用POST ...?

,我也会出现 405错误

一般信息:
* Localhost
* Google App Engine
*中间件:gulp(gulp-api-proxy)
*前端:AngularJS
*后端:PHP(超薄框架)

0 个答案:

没有答案