在我的 Rails 3.2 应用程序(Ruby 1.9)中,在 Coffeescript 中使用路径助手时出现以下错误。
undefined local variable or method `new_user_session_path'
在我的部分 _usermenu.html.haml 工作正常:
= link_to t('user.login'), new_user_session_path
在我的 app/assets/javascripts/metamenu.js.coffee.erb 中抛出上述错误:
$.get("<%= new_user_session_path %>")
不能在coffeescript erb 中使用x_path 和x_url 助手吗?