我這是擺在/users/account_controller.rb
更改路徑模板
一個控制器,該航線是:resources :account controller: 'users/account'
並在視圖我有users
下view
下不了account
文件夾現在,當我試圖訪問new on account
正在尋找模板users/account/new
我該如何指向account/new
?
我這是擺在/users/account_controller.rb
更改路徑模板
一個控制器,該航線是:resources :account controller: 'users/account'
並在視圖我有users
下view
下不了account
文件夾現在,當我試圖訪問new on account
正在尋找模板users/account/new
我該如何指向account/new
?
你大概可以有兩種選擇(可以更多)
1.將account_controller.rb
從users
移開並放在app/controllers
目錄下。並將您的路線改爲resources :account
。
OR
2.Just放在views
您account
文件夾users
下。
如果你只是想呈現非RESTful的方式在特定的視圖,你可以告訴軌呈現在你的方法到底是什麼:
#account_controller.rb
def new
.
.
render 'account/new'
end