有没有办法使用Rails助手方法,更具体地说,是javascript资产文件中的路径助手方法。此文件foo.js.coffee.erb
$('#bar').val("<%= create_post_path %>")
如果我能从erubis那里得到它,我会很高兴
$('#bar').val("path/to/create")
答案 0 :(得分:74)
您可以在erb模板中包含任何帮助器/模块/类:
<% environment.context_class.instance_eval { include MyHelper } %>
请参阅:https://github.com/rails/sprockets/blob/master/lib/sprockets/environment.rb和https://github.com/rails/sprockets/blob/master/lib/sprockets/context.rb
要使用网址助手,您必须包含特定应用程序的帮助程序。
它们位于Rails.application.routes.url_helpers
,所以:
<% environment.context_class.instance_eval { include Rails.application.routes.url_helpers } %>
编辑:修复了移动链轮回购的链接,但不确定多年后这仍然有意义。
答案 1 :(得分:25)
这也可以在初始化器中实现:
Sprockets::Context.send :include, MyHelper
在开发模式下,每次请求都不会重新加载帮助程序。
使用UrlHelpers的方法将有效,直到您需要找到post_path(...um...we don't know what post id we'll need at compile time...)
。有一个ruby gem可以在JavaScript中重新实现所有Rails UrlHelpers:https://github.com/railsware/js-routes
答案 2 :(得分:19)
我不太确定,为什么要这样做。
您可以阻止缓存javascript文件,因为它包含动态值
你会得到你的javascript / coffeescript和rails之间的耦合
如果可能,我会建议您通过在视图中提供目标路径来抽象问题,并在特定事件发生时从DOM元素中检索值。就像Rails的'Unobtrusive Scripting Adapters'一样。例如:https://github.com/rails/jquery-ujs/blob/master/src/rails.js#L157-173
答案 3 :(得分:8)
确实,我同意@eirc的回答(考虑到Sprockets文档)。但我愿意 考虑在rails启动时包括辅助模块。按照
# config/initializers/sprockets.rb
Rails.application.assets.context_class.instance_eval do
include ActionView::Helpers
include Rails.application.routes.url_helpers
include MyModule
end
这是因为:https://github.com/rails/sprockets-rails/blob/master/lib/sprockets/railtie.rb#L23
答案 4 :(得分:5)
实际上,不确定这是否有帮助,但有一种方法可以定义您自己的助手,以便在rake precompile
期间使用
创建一个新的初始化程序并将其放入其中:
module Sprockets
module Helpers
module RailsHelper
def my_helper_method
...
end
end
end
end
然后你可以:
<%= my_helper_method %>
在您的.erb
资产