为匿名用户保存数据的最佳实践?

发布于 2024-12-29 19:53:12 字数 230 浏览 0 评论 0原文

我正在构建一个网络应用程序,我希望允许匿名用户使用它并保存一些数据而无需注册。

我们假设用户保存了一个收藏夹图像 URL 列表,但没有唱歌。

现在我使用这种方式:我将这些收藏夹保存在数据库中,然后保存用户的IP地址 因此,每次用户返回时,他都可以看到他过去的最爱,

当然这是一个临时解决方案,

将该列表与特定用户关联的最佳方法是什么? 将其保存在cookie中? 一些混合解决方案?

I'm building a web app and i'd like to allow anonymous users to use it and to save some data without signing up.

let's assume the user save a list of favorites image urls without singing up.

now i'm using this way: I save those favs in db and then i save the user's ip address
so every time the user go back he can see his past favs

of course this is a temp solution

what's the best way to associate that list to a specific user?
save it in a cookie?
some hybrid solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

路弥 2025-01-05 19:53:12

不使用IP地址;它们不仅对于家庭用户来说经常变化,而且通常会有几个(到数百个)人拥有相同的 IP。

Cookie 可以工作,但它们会在每个 http 请求上发送,因此您会减慢速度并浪费带宽(并且可能很快就会达到 Cookie 大小限制)。

我建议使用 JavaScript localStorage:请参阅 https://developer.mozilla .org/en/DOM/Storage#localStorage

Do not use IP addresses; not only do they change frequently for home users, but there'll usually be a few (to hundreds) of people with the same IP.

Cookies could work, but they get sent on EVERY http request so you'll be slowing things down and wasting bandwidth (and probably hitting the cookie size limit quickly).

I suggest using JavaScript localStorage: see https://developer.mozilla.org/en/DOM/Storage#localStorage

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文