我在Rails 4.1.4中遇到此错误,但我看不到问题出在哪里:语法错误,意外的输入结束,期望的keyword_end
class PostsController < ApplicationController
def index
@posts = Post.all
end
def show
@post = Post.find(params[:id])
end
def new
@post = Post.new
end
def create
@post= Post.new(post_params)
if @post.save
redirect_to posts_path
else
render "new"
end
end
def edit
end
def update
end
def destroy
end
private
def post_params
params.require(:post).permit(:title, :content)
end
end
尝试在new
方法中添加
Post.new(params[:post].permit(:title, :content)
并删除该私有方法
本文收集自互联网,转载请注明来源。
如有侵权,请联系[email protected] 删除。
我来说两句