xhr.open()对给定的用户名和密码做了什么?

时间:2016-08-05 22:16:39

标签: javascript xmlhttprequest

我正在查看XHR规范here,其中所说的只是:

If parsedURL's host is non-null, run these substeps:
* If the username argument is not null, set the username given parsedURL and username.
* If the password argument is not null, set the password given parsedURL and password.

这是什么意思? xhr在哪里把它放在URL中?

1 个答案:

答案 0 :(得分:1)

需要考虑的事项:

  

这是什么意思?

如果步骤5产生的请求URL不为空,则表示它可能包含身份验证部分。此组件在RFC 2396中称为userinfo

  

xhr [sic]在哪里把它放在网址中?

方案:[// <强> [用户:密码@] 主机[:端口]] [?查询] [/]的路径[#片段]