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.
我最近才开始使用 ExtJS 和 Node.js,我不太确定如何使用这个新堆栈处理身份验证。我来自 Grails + Spring Security Core 背景,其中一个网页是用 GSP 构建的,客户端在向服务器发出请求时会维护一个会话。ExtJS 应用程序在加载 JsonStore 时的行为是否相同,或者我是否必须回退到基本或摘要身份验证?
ExtJS 只是一个基于 javascript 的 UI 框架。它不会干扰托管网页的会话管理功能,该网页可以是 jsp、asp 或简单的 html 文件。ExtJS 只是帮助你设计一个丰富的前端,但底层协议仍然是 http。必须处理身份验证的是您的服务器端层。