我对 FormAlchemy 相当陌生,似乎我没有得到任何东西。我有一个这样定义的 SQLAlchemy 模型:
...
class Device(meta.Base):
__tablename__ = 'devices'
id = sa.Column('id_device', sa.types.Integer, primary_key=True)
serial_number = sa.Column('sn', sa.types.Unicode(length=20), nullable=False)
mac = sa.Column('mac', sa.types.Unicode(length=12), nullable=False)
ipv4 = sa.Column('ip', sa.types.Unicode(length=15), nullable=False)
type_id = sa.Column('type_id', sa.types.Integer,
sa.schema.ForeignKey('device_types.id'))
type = orm.relation(DeviceType, primaryjoin=type_id == DeviceType.id)
...
然后在我的(Pylons)控制器中,我创建了一个 FormAlchemy 表单,如下所示:
c.device = model.meta.Session.query(model.Device).get(device_id)
fs = FieldSet(c.device, data=request.POST or None)
fs.configure(options=[fs.ipv4.label(u'IP').readonly(),
fs.type.label(u'Type').with_null_as((u'—', '')),
fs.serial_number.label(u'S/N'),
fs.mac.label(u'MAC')])
文档说“默认情况下,NOT NULL 列是必需的。您只能添加必需性,而不是删除它。”,但我想允许非 NULL 空字符串,这是validators.required
不允许的。blank=True, null=False
Django中有类似的东西吗?
更准确地说,我想要一个像下面这样的自定义验证器,以允许空字符串type=None
或所有值设置为非 NULL 和非空:
# For use on fs.mac and fs.serial_number.
# I haven't tested this code yet.
def required_when_type_is_set(value, field):
type_is_set = field.parent.type.value is not None:
if value is None or (type_is_set and value.strip() = ''):
raise validators.ValidationError(u'Please enter a value')
如果可能的话,我想避免猴子修补formalchemy.validators.required
或其他kludges。我不想设置nullable=True
模型字段,因为它似乎也不是正确的解决方案。
在这种情况下验证表单的正确方法是什么?感谢您提前提出任何建议。