Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 RoR 中制作了一个应用程序,它在本地运行良好,但是当我上传到 Heroku 时,只有一个页面无法运行。这是一个在代码中只有这个的视图:
<h1>Listagem</h1> <% @items.each do |item| %> <%= link_to item.materia, public_path(item) %> <% end %> <br />
我注意到,如果我删除 public_path(item) 页面可以正常工作,那么,有什么替代方法吗?
唯一让我印象深刻的是,你可能拼错了材料
<%= link_to item.materia, public_path(item) %>
这会引发异常。您可能还想检查您的日志