簡體   English   中英

attributeerror 模塊 django db 模型沒有屬性

[英]attributeerror module django db models has no attribute

每次都出現這個問題... attributeerror module django db models has no attribute

請幫我。

from django.db import models class Student(models.model): name = models.CharField(max_length = 50) age = models.CharField(max_length = 2)

嘗試:

from django.db import models

class Student(models.Model):
    name = models.CharField(max_length = 50)
    age = models.CharField(max_length = 2)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM