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.
问题 1)当我通过 ajax 请求页面时,我得到登录页面作为响应,原因是会话已过期。我可以通过轮询来解决这个问题,但是最近我知道 yii 提供了解决方案,比如设置 $loginRequiredAjaxResponse 变量,我正在努力但我无法解决这个问题,谁能给我一个实际使用的例子. 我正在从我的上传页面调用 ajax 请求。
谢谢你。
components在配置文件的部分中使用它:
components
'user'=>array( 'class'=>'WebUser', 'loginRequiredAjaxResponse'=>'logged-out', ),
这会通过 AJAX 在任何 403 上获得输出,而不是重定向到登录页面。