Django为django models字段添加括号

时间:2017-12-12 07:52:04

标签: python django

我试图在我的django字段中添加括号如何做到这一点 只有括号有语法错误

models.py

class Customer(models.Model):
name = models.CharField(max_length=1000)
Region =models.CharField(max_length=1000,choices=Region, default='-')
Status =models.CharField(max_length=1000,choices=Option, null=True)
APP_SERVER\(Prod\)=models.CharField(max_length=1000,blank=True, null=True)

1 个答案:

答案 0 :(得分:0)

首先尝试遵循PEP8标准命名变量

根据我的理解,您要尝试做的是,在管理员/用户定义页面中看到此字段必须以此格式显示@Repository public interface AppleDao extends JpaRepository<Apple, Long> { Page<Apple> getAllByVarietyEqualsOrderByIdAsc(Variety variety, Pageable pageable); }

为了更好地保持变量名为APP_SERVER\(Prod\)

app_server中创建ModelForms时,将forms.py字段的label更改为app_server