web2py 在 UPEERCASE 字段中以小写形式写入

web2py write in lowercase in UPEERCASE field

我的 table 中有一个“requires = IS_UPPER()”字段,我有时需要用小写字母书写,有办法做到吗? 我尝试使用 html 引号或 unicode 标记,但没有任何结果。 谢谢

您可以有条件地设置验证器:

if some_condition:
    db.mytable.myfield.requires = None # or some other validator