如何在 Rails 中将一个模型的内容分配给另一个模型?

发布于 2024-09-12 08:45:34 字数 595 浏览 4 评论 0原文

我有以下创建操作:

def create
    @order = Order.new(params[:order])

    if params[:same_as_above] == "1"
      @order.billing_address.name = @order.shipping_address.name
      @order.billing_address.number = @order.shipping_address.number
      @order.billing_address.street = @order.shipping_address.town
    end

    if @order.save
      if @order.purchase
        render :action => "success"
      else
        render :action => "failure"
      end
    else
      render :action => 'new'
    end
  end

它有效,但在我将送货地址逐个属性复制到帐单地址的方式中似乎有点麻烦和脆弱。请问有更好的办法吗?

I have the following create action:

def create
    @order = Order.new(params[:order])

    if params[:same_as_above] == "1"
      @order.billing_address.name = @order.shipping_address.name
      @order.billing_address.number = @order.shipping_address.number
      @order.billing_address.street = @order.shipping_address.town
    end

    if @order.save
      if @order.purchase
        render :action => "success"
      else
        render :action => "failure"
      end
    else
      render :action => 'new'
    end
  end

It works, but seems a bit cumbersome and brittle in the way i copy the shipping address to the billing address, attribute by attribute. Is there a better way please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫七 2024-09-19 08:45:34
@order.billing_address.attributes = @order.shipping_address.attributes

就可以了。

@order.billing_address.attributes = @order.shipping_address.attributes

does the trick.

只是我以为 2024-09-19 08:45:34

如果您的模型设置正确,您可以使用:

@order.billing_address = @order.shipping_address

If your models are set up correctly, you can use:

@order.billing_address = @order.shipping_address
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文