我的models.py中有以下内容
import datetime
from django.utils import timezone
from django.db import models
# Create your models here.
class Poll(models.Model):
question = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
def __unicode__(self):
return self.question
def was_published_recently(self):
return self.pub_date >= timezone.now() - datetime.timedelta(days=1)
class Choice(models.Model):
poll = models.ForeignKey(Poll)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def __unicode__(self):
return self.choice_text
Run Code Online (Sandbox Code Playgroud)
但是当我进入
from polls.models import Poll, Choice
Poll.objects.all()
Run Code Online (Sandbox Code Playgroud)
我没有得到民意调查:怎么了?但民意调查:民意调查对象
有任何想法吗?
我正在尝试在运行rspec时让颜色显示在我的Windows 7 x64机器上.我已经尝试过console2和ansicon,但这会让Ruby崩溃.我已经安装了ConEmu并且Ruby再次运行但是我没有为rspec获得任何颜色.同样在行中我希望看到颜色,它们之前是文本,如[31m或[36m(这也发生在cmd.exe中).
谢谢你帮助沙龙