我对symfony 1.4(.16)有一点问题:我有一个非常基本的架构:
Creature:
columns:
UniqueName: { type: string }
CleanName: { type: string }
RegionType: { type: integer, notnull: true }
UserLevel: { type: integer }
relations:
RegionType: { local: RegionType, foreign: id, foreignAlias: CreatureRegion, onDelete: CASCADE}
其余的并不重要......
我有一个自动生成的管理员...表单在列表中包含RegionType的所有值..这样可以正常工作......但是在保存时,突然显示该值变为“NULL”...它传递了验证器并且之后得到null ...我试着使用implicite“notnull:true”,但现在只有sql返回一个错误,该值为null,所以在传递验证器时它不能为null ...
任何想法可能是什么?
答案 0 :(得分:-1)
尝试强调您的字段名称,而不是使用它们。这种情况不常见,可能会导致您的问题......