2016-10-12 126 views
0

我目前正在使用郵件程序,其中需要鏈接index視圖。在我的應用程序中,這可以通過reminders_path來得到,但是當我在我的郵件程序(<%= link_to "Memory Enhancer", reminders_path %>)中使用該鏈接時,鏈接無效。在Rails Mailer中使用`_path`

一些谷歌上搜索而一些搜索後,大多數事情似乎建議是這樣的:

<%= link_to "Take Me To My Memory Enhancer", Rails.application.routes.url_helpers.url_for(controller: "reminders", action: "index") %> 

但是,鏈接仍然不起作用。什麼是「正確」的方式來做到這一點?

回答

1

使用reminders_url,因爲你想要一個完整的URL,而不僅僅是路徑。

+0

Gah!謝謝!爲什麼在互聯網上沒有任何地方? – Liz