我對Ruby on Rails非常新穎。我試圖通過製作簡單的博客來了解指南並學習。當試圖訪問本地主機是給我在標題中的錯誤。我確信這是一個簡單的解決方法,目前我無法看到它。謝謝!articles_controller.rb:26:語法錯誤,意外的輸入結束,期待keyword_end
class ArticlesController < ApplicationController
def new
@article = Article.new
end
def create
@article = Article.new(article.params)
if @article.save
redirect_to @article
else
render 'new'
end
private
def article_params
params.require(:article).permit(:title, :text)
end
def index
@articles = Article.all
end
def show
@article = Article.find(params[:id])
end
end
如果在創建方法中缺少結尾 – Doon