ฉันไม่เข้าใจสิ่งนี้จริงๆดังนั้นหากมีใครสามารถอธิบายวิธีการทำงานนี้ได้ฉันจะขอบคุณมาก ฉันมีสองแอปพลิเคชั่นบัญชีและธีม ... นี่คือรายการการตั้งค่าของฉัน:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'accounts',
'themes',
)
ในบัญชีฉันกำลังพยายามทำสิ่งนี้:
from themes.models import Theme
class Account(models.Model):
ACTIVE_STATUS = 1
DEACTIVE_STATUS = 2
ARCHIVE_STATUS = 3
STATUS_CHOICES = (
(ACTIVE_STATUS, ('Active')),
(DEACTIVE_STATUS, ('Deactive')),
(ARCHIVE_STATUS, ('Archived')),
)
id = models.AutoField(primary_key=True)
name = models.CharField(max_length=250)
slug = models.SlugField(unique=True, verbose_name='URL Slug')
status = models.IntegerField(choices=STATUS_CHOICES, default=ACTIVE_STATUS, max_length=1)
owner = models.ForeignKey(User)
enable_comments = models.BooleanField(default=True)
theme = models.ForeignKey(Theme)
date_created = models.DateTimeField(default=datetime.now)
และในรูปแบบธีมของฉัน:
class Theme(models.Model):
id = models.AutoField(primary_key=True)
name = models.CharField(max_length=250)
slug = models.SlugField(unique=True, verbose_name='URL Slug')
date_created = models.DateTimeField(default=datetime.now)
class Stylesheet(models.Model):
id = models.AutoField(primary_key=True)
account = models.ForeignKey(Account)
date_created = models.DateTimeField(default=datetime.now)
content = models.TextField()
Django กำลังเริ่มต้นข้อผิดพลาดต่อไปนี้:
from themes.models import Theme
ImportError: cannot import name Theme
นี่เป็นปัญหาการนำเข้าแบบวงกลมหรือไม่ ฉันได้ลองใช้การอ้างอิงที่ขี้เกียจแล้ว แต่ดูเหมือนจะไม่ได้ผลเช่นกัน!
Account
จากโมดูลที่Theme
กำหนดไว้