不积跬步,无以至千里;不积小流,无以成江海。

nginx跨域

         #允许跨域请求的域,* 代表所有
         add_header 'Access-Control-Allow-Origin' *;
         ##允许请求的header
         add_header 'Access-Control-Allow-Headers' *;
         ##允许带上cookie请求
         add_header 'Access-Control-Allow-Credentials' 'true';
         ##允许请求的方法,比如 GET,POST,PUT,DELETE
         add_header 'Access-Control-Allow-Methods' *;
posted @ 2021-09-13 15:07  |是吴啊|  阅读(35)  评论(0编辑  收藏  举报