我正在尝试使用 AngularJS 发出 DELETE 请求。
我正在从服务器发送此标头:
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Headers: origin, x-requested-with, content-type, accept');
header('Access-Control-Allow-Method: GET, POST, OPTIONS, DELETE');
但是在 Chrome 中,当我做一个
$http({method: 'DELETE', url: EmployeesURL + "remove/id/" + id})
它抛出一个方法 DELETE 是 Access-Control-Allow-Methods 不允许的。错误。