axios发送OPTIONS请求

因为发送的请求不是simple request,所以浏览器会发送一个OPTIONS请求询问服务器是否可以请求,这样每次请求都会发送两次请求,解决的办法是简化请求。

 

simple request

  1. get、post、head 请求类型
  2. 不要设置列表之外的header(如: user-agent)
  3. Content-Type 只能是:

    • application/x-www-from-urlencoded
    • multipart/from-data
    • text/plain

不设置Content-Type默认的属性是application/json

posted on 2020-03-25 13:20  ygunoil  阅读(3119)  评论(0编辑  收藏  举报