gpt4 book ai didi

ruby-on-rails - update_attributes ruby​​ on rails 中的数据

转载 作者:太空宇宙 更新时间:2023-11-03 18:09:02 24 4
gpt4 key购买 nike

我正在使用 ruby​​ on rails,我正在尝试更新我的数据

def update
@post = Post.find(params[:id])

if @post.update_attributes(params[:post])
redirect_to post_path,:notice =>"post has been updated"
else
render "edit"
end
end

它没有更新,错误是:-

ActiveModel::ForbiddenAttributesError in PostsController#update

帮帮我!

最佳答案

你不能只根据参数 [:post] 更新值,你必须使用强参数将它们列入白名单。

在 Controller 中基本上是这样的白色post参数

def post_params
params.require(:post).permit(:title, :description)
end

然后在 Controller 中

  def update
@post = Post.find(params[:id])
if @post.update_attributes(post_params)
redirect_to post_path,:notice =>"post has been updated"
else
render "edit"
end
end
private
def post_params
params.require(:post).permit(:title, :description)
end

关于ruby-on-rails - update_attributes ruby​​ on rails 中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37873704/

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