前后端分离下,egg如何设置跨域
前端url是
http://localhost:3333/index.html#/detail这样的格式
访问后端,报跨域错误
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3333' is therefore not allowed access.
请问后端如何设置
config.default.js里设置白名单:
http://localhost:3333/index.html#/detail
仍然无效。百思不得姐,求教高手!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不设置白名单,直接在egg跨域插件配置的origin里面指定访问域名并开启认证模式就好了
开启cors
https://github.com/eggjs/egg/...
egg-cors链接描述