1

我在模型中有以下功能:

@property
def exclusive_price(self):
    if(self.discount_price > 0):
        return self.list_price - self.discount_price
    else:
        return self.list_price

我尝试在模板中调用它,但没有输出任何内容。我能做些什么?

{{obj.exlusive_price}}
4

2 回答 2

16

它不起作用,因为您调用的是exclusive_price 而不是exclusive_price。c 不见了。

于 2013-03-26T07:09:40.523 回答
1

假设这不是剪切和粘贴错误,则调用您的方法,exclusive_price但您调用exlusive_price的是 ,而没有c.

于 2013-03-26T11:31:27.113 回答