Django 中的历史性
我想在 django 模型中创建几个对象。 例如 Room[idRoom, nameRoom] 和 User[idUser, nameUser]。
我想在房间和用户房间中有多个用户。 我想获取特定房间中的所有用户以及该用户的所有房间。
另外,我想记录房间和用户表的更改历史。
有人可以帮我解决这个问题吗?
I want to create a couple of Object's in django model.
Such as Room[idRoom, nameRoom] and User[idUser, nameUser].
I want to have multiple Users in Room's and Room's for User.
I want to get all user's in specific Room and all Rooms by the User.
Also, I want to make History of changing for Room and User table.
Anybody can help me with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您需要具备的草图:
This is a sketch of what you will need to have: