0

我正在使用 Rails4,并且还使用ActsAsParanoid来处理我视图中已删除的依赖项。

订单.rb

class Order < ActiveRecord::Base
  ...
  has_many :ice_creams
  accepts_nested_attributes_for :ice_creams
  validates :user, :shift, :discount, :total, :total_after_discount, :paid, :remaining, presence: true
  ...
end

冰淇淋.rb

class IceCream < ActiveRecord::Base
  ...
  belongs_to :sauce, with_deleted: true
  belongs_to :order
  validates :size, :basis, :flavors, :ice_cream_price, :extras_price, :total_price, presence: true
  ...
end

app/views/orders/show.html.erb

...
<ul>
  ...
  <li>Total:<%= @order.total %><li>
</ul>

<% @order.ice_creams.each do |ice_cream| %>
  ...
  <ul class=leaders>
    <li>Ice Craem Id:<%= ice_cream.id %></li>
    <li>Sauce:<%= ice_cream.sauce.present? ? ice_cream.sauce.name : "Deleted Value!" %></li>
  ...
<% end %>
...

如果我删除了一个sauce ActsAsParanoid软删除它并保存我的观点免于破坏。并且该present?方法帮助我永久删除了sauces,但正如您所见sauces,在 any 中是可选的ice_cream,所以如果任何ice_cream没有也sauce将显示deleted value

所以我必须想出更多的逻辑来确定是否有冰淇淋没有酱汁,或者有删除的酱汁。所以我写了这个辅助方法。

application_helper.rb

def chk(obj, atr)
  if send("#{obj}.#{atr}_id") && send("#{obj}.#{atr}.present?")
    send("#{obj}.#{atr}.name")
  elsif send("#{obj}.#{atr}_id.present?") and send("#{obj}.#{atr}.blank?")
    "Deleted Value!"
  elsif send("#{obj}.#{atr}_id.nil?")
    "N/A"
  end
end

然后用...

app/views/orders/show.html.erb

...
<%= chk(ice_cream, sauce %>
...

但它回来了NoMethodError in Orders#show

#< IceCream:0x007fcae3a6a1c0 > 的未定义方法 `atr'

我的问题是...

  • 我的代码有什么问题?以及如何解决?
  • 总的来说,我的方法是否被认为是处理这种情况的好习惯?
4

1 回答 1

0

抱歉,我还不太了解整个情况,所以可能会有更好的解决方案,但现在我无法提出建议。

我认为您当前的代码有什么问题是您如何调用chk. 它应该是

...
<%= chk(ice_cream, 'sauce') %>
...

请注意,第二个参数是一个 String 实例(或者它可以是一个 Symbol)。

我认为你的chk方法应该是这样的

def chk(obj, atr)
  attribute_id = obj.send("#{atr}_id")
  attribute = obj.send(atr)

  if attribute_id && attribute.present?
    attribute.name
  elsif attribute_id.present? and attribute.blank?
    "Deleted Value!"
  elsif attribute_id.nil?
    "N/A"
  end
end

我只是重构了你的方法,所以它在语法上应该是正确的。但我还没有检查所有这些if逻辑。

更新

也许这样会更干净

def chk(obj, attr)
  attr_id  = obj.send("#{attr}_id")
  attr_obj = obj.send(attr)

  if attr_id.present?
    attr_obj.present? ? attr_obj.name : 'Deleted Value!'
  else
    'N/A'
  end
end
于 2016-09-25T07:28:20.440 回答