file:models.py
from __future__ import unicode_literals
from django.db import models
class Register(models.Model):
name =models.Charfield(max_length = 100,blank=True,null=True)
email =models.EmailField()
timestamp = models.DateTimeField(auto_now_add=True,auto_now=False)
def__unicode__(self):
return self.mail
def__str__(self):
return self.mail
详细说明:
答案 0 :(得分:1)
def
之后缺少空格。
def __unicode__(self):
return self.mail
def __str__(self):
return self.mail
注意,你根本不应该定义__unicode__
,它不会在Python 3中使用。