如何将用户的任务存储在 mongodb 的不同集合中?
我有一个简单的 CRUD 任务管理器后端。如何分离用户之间的数据?例如,如果一台设备中的一个用户添加了新任务,则第二个用户可以查看、删除和更新该任务。如何在不登录的情况下分离用户?我搜索了一些有关会话的信息,但我认为这不是我想要的。
I have a simple crud task manager backend. How can i separate the data between the users? For example if one user in one device adds a new task the second user can see, delete and update that task. How can i separate the users without making a login? I searched for a bit about sessions but i don't think that's what i want in this case.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想您可以在有人访问该页面时创建一个 uuid,并将该 uuid 保存在用户本地存储中以便管理记录。
I guess you can create a uuid whenever someone comes to the page, and save that uuid in user local storage in order to manage the records.