我正在使用angularjs(1.5版) 需要使用带标头的iframe(标头具有身份验证承载令牌,标头:{“ Authentication”:“ Bearer”}。 如何在html代码(或javascript)中传递该标头?
我可以在html中这样写吗(只要my_url代表外部源页面)?:
<iframe ng-src="my_url" ng-header="{Authentication: 'Bearer {{<my_token>}}'}" >
如果我使用javascript:
$http({
method: 'GET', url: "<my_url>",
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
responseType: "text/html"
})
但我收到错误消息:
从起点访问“”处的XMLHttpRequest “ http://localhost:”已被CORS政策屏蔽
谢谢。