标签: javascript node.js express
我正在使用Express Node.JS框架和cookie进行身份验证。
如何显示仅用于用户的首次登录的弹出窗口?
答案 0 :(得分:2)
您可以从我的答案here中使用相同的技术:
if (!localStorage.getItem("firstTime")) { localStorage.setItem("firstTime", "true"); showPopUp(); }