如何在angularjs $ httpProvides中设置多个标题?

时间:2016-10-08 03:22:58

标签: javascript angularjs http http-headers

我必须在$ http.post

中添加两个标题

一个是'Content-Type',另一个是'token'

  $httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'    //Content-Type to fix ' Access-Control-Allow-Origin'
  $httpProvider.defaults.headers.post['token'] = sessionStorage['token']  

并添加了标题!

post: {Content-Type: "application/x-www-form-urlencoded", Token: "a2186fd57ad0fb3daaed28cc6920491d"}

enter image description here

但似乎$ httpProvider中的两个标题无关紧要。

因为Safari仍然是Access-Control-Allow-Origin

enter image description here

 Origin http://localhost:8099 is not allowed by Access-Control-Allow-Origin.

当我只使用一个标题时,它可以正常工作。

那么,如何在$ httpProvider中配置两个头文件?

0 个答案:

没有答案