Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要制作一个页面
我在想我可以使用 XHR 并直接指定登录标头,然后使用 javascript 创建 iframe。这有意义吗?它会起作用吗?
由于同源策略,您的 XHR 方法将不起作用。
但是,对于 HTTP 身份验证,您可以简单地在 url 中包含数据,src即<iframe>:
src
<iframe>
<iframe src="http://username:password@domain.tld/..."></iframe>
我想我不必提及如果登录凭据很敏感,则不应该这样做——它们很可能会出现在浏览器历史记录中。