我对 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...
任何想法这可能是什么?