即使在安装了对讲机后,我也无法将短路或短路菲尔德输入我的 Python 代码。 我不知道什么是错的 。
from django.db import models
from shortuuid.django_fields import ShortUUIDField
from django.utils.html import mark_safe
from userauths.models import User
class category(models.Model):
cid = ShortUUIDField(unique=True, length=10, max_length=20, prefix="cat", alphabet="abcdefgh12345")
title = models.CharField(max_length=100)
image = models.ImageField(upload_to= category )
我尝试过改变“ 从 ” 路径, 如( 从. 导入 ShortUUID ) 或其它例子, 但我总是收到相同的错误 。