小编Sha*_*rdt的帖子

Django教程unicode无法正常工作

我的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)

我没有得到民意调查:怎么了?但民意调查:民意调查对象

有任何想法吗?

django python-3.x

22
推荐指数
1
解决办法
7825
查看次数

Rspec颜色与Conemu

我正在尝试在运行rspec时让颜色显示在我的Windows 7 x64机器上.我已经尝试过console2和ansicon,但这会让Ruby崩溃.我已经安装了ConEmu并且Ruby再次运行但是我没有为rspec获得任何颜色.同样在行中我希望看到颜色,它们之前是文本,如[31m或[36m(这也发生在cmd.exe中).

谢谢你帮助沙龙

cmd rspec colors conemu

7
推荐指数
1
解决办法
1495
查看次数

标签 统计

cmd ×1

colors ×1

conemu ×1

django ×1

python-3.x ×1

rspec ×1