axios发送OPTIONS请求
因为发送的请求不是simple request
,所以浏览器会发送一个OPTIONS
请求询问服务器是否可以请求,这样每次请求都会发送两次请求,解决的办法是简化请求。
simple request
- get、post、head 请求类型
- 不要设置列表之外的header(如: user-agent)
-
Content-Type 只能是:
- application/x-www-from-urlencoded
- multipart/from-data
- text/plain
不设置Content-Type
默认的属性是application/json