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.
我在 Web 应用程序中使用 HTTP Basic 身份验证。一旦用户在浏览器登录窗口中输入凭据,应用程序就会启动。
如何检索在基于 javascript (ExtJS) 的应用程序中输入的用户名?
可能,最简单的方法是创建一个后端服务(例如 java 中的 servlet),该服务将从中检索 userPrincipal 名称HttpServletRequest并以 JSON 格式返回。通过这种方式,您可以从 javascript 页面执行正常的 AJAX 调用来查询服务,并检索主体(用户名)。
HttpServletRequest