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.
我正在构建一个应用程序,用户必须在其中选择他们居住的区域。根据他们居住的地方,它将他们带到单独的页面。是否可以保存用户每次打开应用程序时选择的页面并显示该页面?
您应该查看 cookie。
使它们成为客户端的最简单方法是使用 javascript:
document.cookie = "area=USER_AREA";
然后您甚至可以再次使用 javascript 客户端进行重定向:
var cookie = document.cookie; var area = cookie.slice(cookie.indexOf('area')+5); document.location = "/" + area;