从Angular js中的浏览器缓存中删除会话

时间:2017-06-15 07:38:12

标签: javascript angularjs session browser-cache

我使用角度js作为前端,Java作为后端。无论会话如何,当使用关闭选项卡时,我都需要使会话无效。每当他点击网址时,他都需要被重定向到登录页面。

我尝试在index.html中包含以下内容

.ph-container{
    text-align: right;
}

同样在js方面,

    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
    <meta http-equiv="cache-control" content="max-age=0" />
    <meta http-equiv="cache-control" content="no-cache" />
    <meta http-equiv="cache-control" content="no-store" />
    <meta http-equiv="expires" content="0" />
    <meta http-equiv="expires" content="-1" />
    <meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
    <meta http-equiv="pragma" content="no-cache" /> 

任何人都可以建议我为此提供什么。

还需要在IE中处理此问题。

提前致谢

0 个答案:

没有答案