📜  如何在 django 中使用 taggit 管理器 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:39.835000             🧑  作者: Mango

代码示例1
from django.db import models

from taggit.managers import TaggableManager

class Food(models.Model):
    # ... fields here

    tags = TaggableManager()