问题:模板中创建form表单中的下拉列表, 前台打开页面显示object,而不是值,如图:
尝试了多种办法无果,最后解决了,处理办法是修改models.py,原来的model:
- class TechnicistLocation(models.Model): # 技术人员位置
- LocationName = models.CharField('位置名称', max_length=20)
- class Meta:
- verbose_name_plural = '技术人员位置'
- app_label ="schedule"
- def __unicode__(self):
- return self.LocationName
修改后的model:
- class TechnicistLocation(models.Model): # 技术人员位置
- LocationName = models.CharField('位置名称', max_length=20)
- class Meta:
- verbose_name_plural = '技术人员位置'
- app_label ="schedule"
- def __str__(self):
- return self.LocationName
区别就在倒数第二行,python3直接使用__str__(self)就可以了,如果是python2,则要用__unicode__(self)