gpt4 book ai didi

ruby-on-rails - 如何简化我的模型代码?

转载 作者:太空宇宙 更新时间:2023-11-03 17:12:13 25 4
gpt4 key购买 nike

我是 Rails 的新手,我想知道是否有任何方法可以从我的模型中简化这段代码:

class Item < ActiveRecord::Base

def subtotal
if price and quantity
price * quantity
end
end

def vat_rate
if price and quantity
0.19
end
end

def total_vat
if price and quantity
subtotal * vat_rate
end
end

end

据我所知 *before_filter* 在模型中不起作用?

最佳答案

我会:

class Item < ActiveRecord::Base

VAT_RATE = 0.19

def subtotal
(price || 0) * (quantity || 0)
end

def total_vat
subtotal * VAT_RATE
end

end

关于ruby-on-rails - 如何简化我的模型代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9617231/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com