在Web2py中计算一个字段
Calculate a field in Web2py
我需要一个计算字段,它是同一 table 中其他 2 个字段的乘积。字段为 Total
,等于股票 table 中的 Price
* Quantity
。
有人能举个例子吗?
你可能想要 computed field:
Field('total', compute=lambda r: r.price * r.quantity)
根据您的需要,您也可以考虑 virtual field。
我需要一个计算字段,它是同一 table 中其他 2 个字段的乘积。字段为 Total
,等于股票 table 中的 Price
* Quantity
。
有人能举个例子吗?
你可能想要 computed field:
Field('total', compute=lambda r: r.price * r.quantity)
根据您的需要,您也可以考虑 virtual field。