我目前在视图中有以下链接:
<li><%= link_to "Classrooms", '/institutes/1/courses' %></li>
我想获得路径&#34;&#39; / institutes / 1 / courses&#39;&#34;从辅助方法。请让我知道我是怎么做的,我可以在我的视图中给助手打电话。
答案 0 :(得分:1)
您可以将它添加到您的类助手并直接在那里调用它。例如,如果你的模型调用“posts”,你可以在helpers文件夹中有一个文件posts_helper.rb,例如
parseInt(document.getElementById("num").value)
并在您看来,
module PostsHelper
def your_method
end
end
您也可以将其添加到application_helper.rb,但只有在全局使用时才应该这样做。