如何在AngularDart中设置/允许交叉原点。
我只是尝试在index.html中进行设置,然后在代码中寻找它?
赞:
.headers["X-FRAME-OPTIONS"] = "ALLOW-FROM http://http://x.x.x.x/mypath"
我正在从以下域转发:subdomain.domain.com
这就是为什么我认为我需要ALLOW-FROM x.x.x.x/mypath
。
它无需<subdomain>.domain.com
即可工作,但我需要子域。
我得到:
Refused to display 'http://x.x.x.x/mypath' in a frame because it set 'X-Frame-Options' to 'sameorigin'.
答案 0 :(得分:1)
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
X-Frame-Options HTTP响应标头
这意味着这是在服务器上根据响应而不是由客户端设置的。 在Angular中没有设置点。