如何以不那么冗长的方式更新这些非常相似的文本字段?下面的文本字段被命名为给定 - 我没有为这个问题编辑它们。
def update
company = Company.find(current_user.client_id)
company.text11 = params[:content][:text11][:value]
company.text12 = params[:content][:text12][:value]
company.text13 = params[:content][:text13][:value]
# etc
company.save!
render text: ""
end
我试过使用send
,to_sym
但到目前为止没有运气......