如何知道 django-tagging 中是否创建了新标签?
我如何知道是否为模型创建了新标签?看起来 django-tagging API 没有提供这样的方法。我是 Django 和 django 标记应用程序的新手,想听听您的建议。
更新:我想要完成的是向标签添加更多属性。我认为有另一个模型 TagProperties 链接到标签模型。每次保存标签时,我也会保存 TagProperies。
How can I know if a new tag is created for a model? Looks like the django-tagging API does not provide such method. I'm new to both Django and django-tagging app and would like to hear your advice.
Update: what I'm trying to acomplish is to add more properties to tags. I think to have another model TagProperties linked to Tag model. And every time the Tag is save I save the TagProperies as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是使用 django 信号。您可以连接
post_save< /code>
向
Tag
模型发出信号,并在创建新实例时处理该信号。One way would be to use django signals. You could connect a
post_save
signal to theTag
model and handle that for when a new instance is created.