access-control-allow-methods angularjs不允许使用方法delete

时间:2016-12-04 13:49:10

标签: http cors

我使用angularjs和ionic-framework开发了应用程序。当我尝试从列表中删除项目时出现错误:

Method DELETE is not allowed by Access-Control-Allow-Methods in preflight response.

我搜索了这意味着什么,但无法得到正确的解释。所以在这里发布了这个查询,希望我会得到帮助。谢谢。

1 个答案:

答案 0 :(得分:2)

此问题出在服务器端。您需要发送适当的访问控制标头。

Access-Control-Allow-Methods: GET, POST, OPTIONS, DELETE

PHP中的示例:

header("Access-Control-Allow-Methods: GET, POST, OPTIONS, DELETE");