Rails message: ActionView::MissingTemplate

前端 未结 2 1705
再見小時候
再見小時候 2021-02-18 23:19

I am getting an error that I cannot figure out:

ActionView::MissingTemplate (Missing template cluster/delete_stuff.erb in view path app/views)
<...snip trace.         


        
2条回答
  •  渐次进展
    2021-02-19 00:03

    Turns out that I did not have a

    render :something

    in my controller method, so I guess Rails figured that there must be a "delete_stuff.erb" somewhere to know what to do. Added a render and the error message goes away.

提交回复
热议问题