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.
GWT RequestBuider 对象如何生成 Authorization 标头?它使用用户名和密码吗?或者它不生成,我必须计算它?如果是这样,我该如何计算基本授权?
RequestBuilder 在底层使用 XMLHttpRequest,它依赖于浏览器进行身份验证。对于基本身份验证,您所要做的就是提供用户和密码。请注意,您无法控制身份验证错误,如果凭据错误,浏览器将使用自己的 UI 询问用户。
必须设置“授权”标头。服务器仅在提示授权时才使用用户名和密码。