How to remove HTTP specific headers in Javascript

前端 未结 4 977
情歌与酒
情歌与酒 2020-12-31 04:41

Is it possible to, before sending a http message, remove some specific http headers using javascript / XmlHttpRequest ?

I\'m using a proprietary browser, so there\'s

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-31 05:20

    When I use jquery-file-upload, and want to remove the header in the options method, setting it to null or '' doesn't work for me. I use this instead:

    req.setRequestHeader("Authorization");

提交回复
热议问题