にシンボルを変換することはできません、私は上記のCreate
を実行すると、私は次のエラーを取得する私はRubyで、次のコードを持つ文字列
def create
@post = Post.new(post_params)
@post.save
redirect_to @post
end
private
def post_params
params.require(:post).permit(:title, :text)
end
Getting Started with Railsガイドから直接取ります。
あなたは強いPARAMATERSを使用しようとしているように思えた文字列
と何の問題だ???? –
エラーフルバックトレースとは何ですか?より多くのデータを提供する。 –