我有一种模式可以将我的控制器代码放入lib/
以减少控制器的代码,我不知道这是否适用于我的实例变量。我需要一些将控制器的操作传递给 a lib/
,以进行示例调用require
或include
在操作中,一些来组织我的代码。
动作是:
def calculate_ship
pacote = Correios::Frete::Pacote.new
@products = buy_cart.line_items
@products.each do |p|
p.product.length = 16 if !p.product.length
p.product.weight = 0.3 if !p.product.weight
p.product.width = 11 if !p.product.width
p.product.height = 6 if !p.product.height
@item = Correios::Frete::PacoteItem.new :peso => p.product.weight, :comprimento => p.product.length, :largura => p.product.width, :altura => p.product.height
while p.quantity > 0
pacote.add_item(@item)
p.quantity -= 1
end
end
frete = Correios::Frete::Calculador.new :cep_origem => "95520-000",
:cep_destino => params[:cep],
:encomenda => pacote
servicos = frete.calcular :sedex, :pac
@pac = servicos[:pac].valor
@sedex = servicos[:sedex].valor
flash[:error] = servicos[:sedex].msg_erro
end
这个怎么搬进去lib/
?我不习惯用lib/
等来认真地编程。