欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

深入浅析Nginx实现AJAX跨域请求问题

程序员文章站 2022-05-26 09:53:00
ajax从一个域请求另一个域会有跨域的问题。那么如何在nginx上实现ajax跨域请求呢?要在nginx上启用跨域请求,需要添加add_header access-cont...

ajax从一个域请求另一个域会有跨域的问题。那么如何在nginx上实现ajax跨域请求呢?要在nginx上启用跨域请求,需要添加add_header access-control*指令。如下所示:

location /{
add_header 'access-control-allow-origin' 'http://other.subdomain.com';
add_header 'access-control-allow-credentials' 'true';
add_header 'access-control-allow-methods' 'get';
...
...
the rest of your configuration here
...
...
}

注释如下:

第一条指令:授权从other.subdomain.com的请求

第二条指令:当该标志为真时,响应于该请求是否可以被暴露

第三天指令:指定请求的方法,可以是get,post等

如果需要允许来自任何域的访问,可以这样配置:

access-control-allow-origin: *

重启nginx

service nginx reload

ajax跨域请求测试

成功时,响应头是如下所示:

http/1.1 200 ok
server: nginx
access-control-allow-origin: other.subdomain.com