Django 模型:如何管理字段标志
我需要创建一个用户配置文件。为了确保隐私,此配置文件中的许多字段将“隐藏”:每个用户都可以隐藏这些信息。
我可以使用 https://github.com/disqus/django-bitfield,但我想了解是否可以更好地将每个字段与其自己的标志联系起来。
I need to create a User Profile. To ensure privacy many fields in this profile will be "hidable": every User will be able to hide these information.
I can use https://github.com/disqus/django-bitfield, but i would like to know if it's possibile to better tie each field to its own flag.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将位打包到单个字段中会使索引和查询该字段变得更加困难。这是比其价值更多的努力。
Packing bits into a single field makes it more difficult to index and query the field. It's more effort than it's worth.