填充条件表达式

时间:2014-10-14 01:19:59

标签: web2py

可以在web2py中填充具有依赖于另一个字段的条件表达式的字段,就好像row.field使这样的计算为True,否则进行这样的计算

2 个答案:

答案 0 :(得分:0)

听起来您可能想要使用computed field

db.define_table('mytable',
    Field('field1'),
    Field('field2', compute=lambda r: 'this' if r.field1 else 'that'))

答案 1 :(得分:0)

谢谢你,安东尼 我有这个代码的问题

Field ('heure','boolean',compute=lambda r: True if r.date3 <= 23 else False)

我希望根据值row date3设置False或True,但它默认设置为False