gpt4 book ai didi

ruby-on-rails - rails : overriding model name in params

转载 作者:数据小太阳 更新时间:2023-10-29 08:39:10 26 4
gpt4 key购买 nike

我有以下模型:

class Action < ActiveRecord::Base
# model code stuff
end

在 Controller 中,我可以做类似的事情:

class ActionsController < ApplicationController
# super simple update
def update
@action = Action.find(params[:id])
@action.update_attributes(params[:action])
end
end

是否可以在不重命名模型本身的情况下使我的 Action 模型由 params 数组中的“something_action”表示? IE。所以我可以像那样检索它:

@action.update_attributes(params[:something_action])

如有任何帮助,我们将不胜感激?

最佳答案

在你的表单中使用 :as => :some_other_params_name

form_for(@action, :as => :different

关于ruby-on-rails - rails : overriding model name in params,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15354707/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com