我是新來的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不模型工作?
返回零時的價格和數量都沒有設置? – apneadiving 2012-03-08 11:55:46