我有一个由脚手架创建的现有实体。现在我意识到我并不需要提供 show 视图,因此我想要消除现在不必要的任何方法和部分。除了在对象控制器上为我创建的show
方法,还应该删除哪些其他部分?这些是我能想到的:
show.html.erb
文件link_to
和index.html.erb
个文件中的对象实例的edit.html.erb
引用redirect_to
调用更新并在控制器上创建方法还有什么我应该删除吗?
答案 0 :(得分:9)
你应该:
show
操作redirect_to
和create
中的update
以转到新操作link_to
和index.html.erb
edit.html.erb
app/views/entities/show.html.erb
resources :entities
行更改为resources :entities, :except => :show
答案 1 :(得分:2)
你可以/应该删除:
show.html.erb
档案