1

我正在尝试实现这种模式

class A
    Mongoid::Document

    belongs_to :price

    def price
      self[:price] || calculate_price
    end

    def calculate_price
       #Some logic
    end    
end

这意味着用户可以将价格强制为 A 或获得计算价格。麻烦的是,setter 不能按预期工作:

2.0.0-rc2 :013 > a = A.new
 => #<A _id: 5215b3321d41c89a1f000001, price_id: nil> 
2.0.0-rc2 :015 > a.price = Price.new
 => #<Price _id: 5215b3451d41c89a1f000002, i(inclusive_tax): nil, e(exclusive_tax): nil, tax_id: nil> 
2.0.0-rc2 :016 > a.price
 => "5215b3451d41c89a1f000002"

覆盖设置器的方法是什么,使事情按预期工作?

我试图添加一个

def price=(val)
   super(val)
end

但是super二传手没有。

有什么提示吗?

4

1 回答 1

0

这个工作怎么样?

class A
    Mongoid::Document

    belongs_to :price

    def price
      Price.find(self[:price]) || calculate_price
    end

    def calculate_price
       #Some logic
    end    
end
于 2013-08-25T10:12:09.790 回答