我使用的是一个简单的link_to
,我们总是在我的rails应用程序中使用它,但是它给出了这个错误。
wrong number of arguments (1 for 0)
我的代码在视野中。
<%= link_to category.name store_path %>
在网址和控制台中运行时,路径正确。
2.2.3 :003 > app.store_path
=> "/store"
我不明白为什么会在这里提出争论。
答案 0 :(得分:7)
你遗失,
<%= link_to category.name, store_path %>