我试图在我的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)
答案 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