我已經創建了模型,視圖和控制器:加入行動,腳手架生成器
$ rails generate scaffold Post name:string title:string content:text
然後我加入後控制器的方法:
def fill_default_data
Post.fill_default_data
end
但是,當我在瀏覽器中打開http://localhost:3000/posts/fill_default_data我得到的錯誤:
ActiveRecord::RecordNotFound in PostsController#show
Couldn't find Post with ID=fill_default_data
它看起來像Rails沒有看到fill_default_data actio n並使用show方法。我怎樣才能添加新的方法腳手架生成的控制器?