我正在使用jersey作为我的静态API实现。在前端,我正在使用angularjs $ http服务发出http请求。当我请求删除方法时,我总是遇到以下错误。
"Method DELETE is not allowed by Access-Control-Allow-Methods in preflight response."
我阅读了一些文章,他们说我需要允许在“ Access-Control-Allow- Methods”上进行删除。我已经如下设置了响应过滤器,但是它仍然存在这样的问题。我该怎么办?
@Provider public class CORSResponseFilter implements ContainerResponseFilter { @Override public void filter(ContainerRequestContext requestContext, ContainerResponseContext responseContext) throws IOException { MultivaluedMap<String, Object> headers = responseContext.getHeaders(); headers.add("Access-Control-Allow-Origin", "*"); headers.add("Access-Control-Allow-Methods", "*"); } }
以下是我提出要求的角度代码:
$http({ method: 'DELETE', url: remoteUrl, headers : {'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8', 'ACCESS_TOKEN' : $cookieStore.get("access_token") }, data : $httpParamSerializer({ 'id':id }) }).success(function(data,status,headers,config) { $scope.refreshDepartments(); console.log(data); alert("success"); }).error(function(data,status,headers,config){ console.log(data); alert("error"); });
经过一些测试,我找到了解决方案。我将allow方法放在标题下,如下所示,然后它起作用了。我不知道为什么“ *”不起作用。
headers.add("Access-Control-Allow-Methods", "GET, POST, OPTIONS, PUT, DELETE");