在我的rails应用程序上工作时,我在终端中使用以下命令创建了一个“Pins”脚手架:
@H_502_2@
rails generate scaffold Pins description:string –skip-stylesheets
这会在我的应用程序中创建脚手架然后运行:
@H_502_2@rake db:migrate
它没有任何障碍.我没有改变任何生成的页面但是当我最终尝试访问localhost上的新脚手架时:3000给出了以下错误:
@H_502_2@RuntimeError in PinsController#index
In order to use respond_with,first you need to declare the formats your controller responds to in the class level
Rails.root: /Users/code/appname
Application Trace | Framework Trace | Full Trace
app/controllers/pins_controller.rb:6:in `index’
我一直在关注视频教程来创建我的应用程序,但视频中的用户没有提出问题.我正在尝试使用在线资源来解决问题,但没有解决我的问题.
你们能帮助我吗?
谢谢!