用nginx解决webstorm内置server调用本地api的跨域问题
程序员文章站
2022-08-10 15:20:15
webstorm内置的server在调用部署在本地不同端口的api时会产生跨域问题,在开发时可以用nginx代理解决跨域问题。
nginx.conf文件 server域中:
l...
webstorm内置的server在调用部署在本地不同端口的api时会产生跨域问题,在开发时可以用nginx代理解决跨域问题。
nginx.conf文件 server域中:
listen 80;server_name localhost;root C:\Users\Administrator\Desktop\design;index index.html index.htm index.php;location /gP {????proxy_pass https://localhost:8080/gP;}主要配置好root path和代理路径。
前端的请求url改为'/gP'+requestPath即可实现同域下请求。
上一篇: ThinkPHP 5.0/5.1 自定义404界面的配置
下一篇: 雪花飘落效果代码实现教程