Django 投票:附加标签的正确方法是什么
我从 django-tagging 开始,我不明白为什么 update_tags(object, new_tag)
方法替换 object
上的所有现有标签new_tag
。
将标签附加到视图内对象的现有标签的正确方法是什么?
编辑: add_tag
功能不令人满意,因为它不允许您添加多个单词标签:请参阅 这篇前一篇文章
i'm starting with django-tagging and I don't understand why update_tags(object, new_tag)
method replaces all existing tags on object
by new_tag
.
What is the proper way to append a tag to the existing tags on an object inside a views?
EDIT: add_tag
function is not satifying becaus it doesn't enables you to add multiple words tags: see this former post
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
add_tag(object, tag_name)
。有关详细信息,请参阅 http://api.rst2a.com/1.0/rst2/html?uri=http://django-tagging.googlecode.com/svn/trunk/docs/overview.txt#api -参考
Use
add_tag(object, tag_name)
.For more information see http://api.rst2a.com/1.0/rst2/html?uri=http://django-tagging.googlecode.com/svn/trunk/docs/overview.txt#api-reference