0
我是一個新手,不明白的地方此錯誤消息:這是什麼意思「Missing template」(ruby,rails 4,devise 2)?
Missing template customer_mailer/confirmation_instructions with "mailer". Searched in:
* "customer_mailer"
它在哪裏期待的模板呢?
我是一個新手,不明白的地方此錯誤消息:這是什麼意思「Missing template」(ruby,rails 4,devise 2)?
Missing template customer_mailer/confirmation_instructions with "mailer". Searched in:
* "customer_mailer"
它在哪裏期待的模板呢?
此消息告訴您在您的app/views/customer_mailer/
路徑中需要一個名爲confirmation_instructions.html.*
的視圖。 erb
,haml
等
我設計的意見,爲客戶的內部客戶文件夾:
的
*
必須根據處理程序進行更改的頁面,如視圖/客戶/確認/ new.html.erb AND客戶的觀點會設計電子郵件,如views/customers/customer_mailer/confirmations_instructions.html.erb。我該如何告訴設計師去看看,而不是在views/customer_mailer路徑中? – Mathieu查看[這個問題]的接受答案(http://stackoverflow.com/questions/5230504/how-do-i-change-default-devise-views-paths)。 – backpackerhh
用戶我想保持相同的設計規定。但是當我創建第二個模型(Customers)時,我想保留app/views/customers /中的所有視圖...。 – Mathieu