项目使用 Axios 和 Mock, 今天前后端联调, 碰到若干问题。
一、参考文章设置跨域Chrome
"mac上设置新版chrome浏览器跨域open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --user-d"
https://blog.csdn.net/xiaobo0134/article/details/93751433
打开一个新的可跨域的chrome窗口实现方法:
1. 打开终端
2. 输入下面的命令( 需要替换路径中的yourname )
open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --user-data-dir=/Users/yourname/MyChromeDevUserData/
二、mock方法的地址和Axios设置成不一样,最好把和Mock相关的配置注释掉
三、POST的时候注意发送内容和服务器端一致,例如我之前一直发送数组不成功,最后发送单个对象就成功了
四、POST的地址注意最后是否需要添加 "/" 符号