在我使用Express的app.js
文件中,我有这段代码
router.get('/test', function (req, res, next) {
// I have a token here which I need to send to the angular app
// Need to write to local or session storage here
res.redirect('/angular/app');
});
我已经减少了代码,我要做的原因是我正在使用SAML对用户进行身份验证,并且我将收到一个令牌,需要在Angular应用中使用。
我尝试使用store.js,但是只有“会选择最佳的可用存储,并自动回退到第一个可用的可用存储”,这恰好是内存存储,不是很持久。