使用步骤:
1、在web.xml文件用err-page进行配置
<error-page>
<error-code>403</error-code>
<location>/403.js</location>
</error-page>
代码解释:上述配置在后端返回状态码是403(权限不足)时会显示403.js页面。
使用步骤:
1、在web.xml文件用err-page进行配置
<error-page>
<error-code>403</error-code>
<location>/403.js</location>
</error-page>
代码解释:上述配置在后端返回状态码是403(权限不足)时会显示403.js页面。