在我的角度应用程序中,我发布了一个帖子请求,如下所示。
this.http.post('http://13.229.115.110:8080/orders', {
'price': 17,
'quantity': 1,
'owner': 'OwnerOne'
}).subscribe(data => console.log('data recived ', data), error => console.log('error', error));
但我收到以下错误
OPTIONS http://13.229.115.110:8080/orders 403 (Forbidden)
Failed to load http://13.229.115.110:8080/orders: Response for preflight has invalid HTTP status code 403.
我无权更改服务器代码/配置。我该如何解决这个问题?注意:我在Chrome浏览器中启用了跨源资源共享