我想在我的 Backbone.js 代码中使用设计助手和路由:
user_signed_in?
user_omniauth_authorize_path(:provider)
destroy_user_session_path, method: :delete
通常,在我的 Rails 视图中,我可以这样做:
<% if user_signed_in? %>
<li><%= link_to current_user.name, root_path %></li>
<li><%= link_to 'Logout', destroy_user_session_path, method: :delete %> </li>
<% else %>
<%= link_to "Sign in with provider", user_omniauth_authorize_path(:provider) %>
<% end %>
如何在我的index.jst.eco
Backbone.js 模板中使用这些路由和助手?