【发布时间】:2015-04-18 14:03:38
【问题描述】:
我正在使用Django project tutorial 学习 Django。 由于我使用 python 2.7,我无法在 python 2.7 中实现以下内容:
from django.db import models
class Question(models.Model):
# ...
def __str__(self): # __unicode__ on Python 2
return self.question_text
class Choice(models.Model):
# ...
def __str__(self): # __unicode__ on Python 2
return self.choice_text
【问题讨论】:
-
答案已经在 cmets 中了!
-
接受的答案应该是来自@alfetopito 的答案,因为这种技术最符合 Django 的移植理念。
标签: python django python-2.7 django-models