我首先写下了方法,使对象更易于阅读,但是当我在cmd中运行对象时它不起作用。就在我运行内置API的django之后。 python manage.py shell
。然而,当我运行Question.objects.all()
时,它仍然会返回此结果,它返回<QuerySet [Question: Question object]>
我的结果应该返回<QuerySet [<Question: What's up?>]>
。请帮我解决这个问题。
import datetime
from django.db import models
from django.utils import timezone
# Create your models here.
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
def _str_(self):
return self.question_text
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def _str_(self):
return self.choice_text
答案 0 :(得分:0)
替换:
def _str_(self):
.....
使用:
def __str__(self):
.....
双下划线,而不是单下划线。