我必须在$ 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"}
但似乎$ httpProvider中的两个标题无关紧要。
因为Safari仍然是Access-Control-Allow-Origin
Origin http://localhost:8099 is not allowed by Access-Control-Allow-Origin.
当我只使用一个标题时,它可以正常工作。
那么,如何在$ httpProvider中配置两个头文件?