我想知道在Django中存储用户偏好的最佳方式是什么。
假设用户可以选择三种选择。
根据他们的选择,我想自定义某些模板。
将每个选项/偏好设置保存为BooleanField()
或tuple
选项会更好吗?
布尔值:
subscription_newsletter = model.BooleanField()
subscription_posts = model.BooleanField()
subscription_promotions = model.BooleanField()
元组:
SUBSCRIPTION_CHOICES = (
("newsletter","Newsletter"),
("posts", "Posts"),
("promotions", "Promotions"),
)
答案 0 :(得分:3)
这取决于你是否希望他们能够只选择一个选项(然后是元组)或许多(然后是布尔值)。