如何限制可能与项目相关的标签数量?
我需要限制与项目相关的标签数量。最多应有 5 个标签。
tags = form.cleaned_data['tags']
item.tags = tags
item.save()
I need to limit number of tags than can be related to item. It always should be max 5 tags.
tags = form.cleaned_data['tags']
item.tags = tags
item.save()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
形式的干净方法执行此操作是个好主意
我认为以EDIT
当您调用 form.is_valid() 时将检查这一点。当错误发生时,它会被添加到 form.tags.errors
EDIT
所以只是
I think it is a good idea to do this in clean method of form
EDIT
This will be checked when you will call form.is_valid(). When error occurs it is added to form.tags.errors
EDIT
so just
假设标签是一个集合或列表?!
哼你想要
Assuming tags is a set or list ?!
Humm you want