更改内容长度限制

时间:2019-02-27 09:32:46

标签: angular apache

当我在 Apache PHP 服务器上使用 Angular 6 发出 http 获取或获取请求时 并且 Content-Length 超过5000个字符,我收到以下错误消息:

  

从以下位置访问“ http:/example.com/search/results/1”上的XMLHttpRequest   原点“ http://angular.localhost:7483”已被CORS阻止   策略:“访问控制允许来源”标头不存在   请求的资源


  

ERROR错误:未捕获(承诺):状态为0的URL响应:   空

但是当长度较小时,不会显示这些错误。
这个限制是恒定的还是可以更改?

我指的是内容长度,如下图所示


enter image description here

Angular上的打字稿代码片段:

this.http.get(
SearchV2 + 'results/' + queryParams.join("/"),
{
    withCredentials: true
})
.map(res => res.json())
.toPromise();

0 个答案:

没有答案