0

我对 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...

任何想法这可能是什么?

4

1 回答 1

-1

尝试强调您的字段名称而不是驼峰式命名。这种情况不是常规的,它可能会导致你的问题......

于 2012-07-18T15:17:15.410 回答