gpt4 book ai didi

ruby - 无法将 Symbol 转换为 String

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

我有以下Ruby代码,直接取自Getting Started with Rails指南

 def create
@post = Post.new(post_params)

@post.save
redirect_to @post
end

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

当我运行上面的 Create 时,出现以下错误。

can't convert Symbol into string

最佳答案

您似乎正在尝试使用强参数。你得到这个错误 cannot convert symbol into string 因为你没有配置 strong_parameters。所以默认情况下你不能对带有符号的参数使用 require 。

配置强参数如下:

1.) Add gem 'strong_parameters' to your gemfile and bundle it.
2.) Include Restrictions to you model as follows.
include ActiveModel::ForbiddenAttributesProtection to your model.
3.) Disable white listing in application confiuration(config/application.rb)
config.active_record.whitelist_attributes = false

参见 documentation有关配置的更多详细信息。

现在您的代码应该可以工作了。

关于ruby - 无法将 Symbol 转换为 String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17423660/

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