用于 JS 和 HTML 渲染的 Rails 布局
好吧,这可能有点奇怪,但问题是:
我有大量类似的控制器/视图交互,我想让它们更加干燥。用户单击一个链接,该链接将被转换为使用 JQuery 执行 AJAX 响应。响应期望返回并执行一些 JavaScript。其中有几个遵循相同的模式:
$("working_div").html("<%= render partial => 'some_partial' %>")
有没有一种方法可以让我可以通过执行以下操作来干燥它......
$("working_div").html("<%= yield %>")
并且它仍然返回 JavaScript?
Okay, so this might be kind of strange but here's the question:
I have a great number of similar controller/view interactions that I'd like to make more DRY. The user clicks a link, which is converted to perform an AJAX response with JQuery. The response expects some JavaScript to be returned and executed. Several of these follow the same pattern:
$("working_div").html("<%= render partial => 'some_partial' %>")
Is there a way to make it so that I can DRY this up by doing...
$("working_div").html("<%= yield %>")
And it still return JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果您在布局中使用布局,则可以。 (它要求您再构建一个文件,但它将是 DRY。)我不确定这是否是您想要的,但它是如何工作的。
您的嵌套布局可以调用
yield
(即使您有一个也调用yield
的普通布局。对于 js,您的渲染堆栈将继续:[模板]>> [部分布局]>> [部分]
你的控制器将调用你的普通渲染命令(或者没有,如果它是隐式的)。 (我不知道你想在哪里声明要渲染哪个部分,所以我只是在这里选择。):
你的模板,而不是调用部分(
some_partial
)将调用部分模板,然后,您的嵌套部分可以调用方法
yield
:Yes, you can, if you use layouts within layouts. (It requires you to build one more file, but it will be DRY.) I'm not sure if this is what you want, but here's how it works.
Your nested layout can call
yield
(even if you have an ordinary layout which also callsyield
. For js, your render stack will proceed:[template] > [partial layout] > [partial]
Your controller will call your ordinary render command (or none, if it's implicit). (I don't know where you want to declare which partial is to be rendered, so I just picked here.):
Your template, instead of calling the partial (
some_partial
) will call a partial template, which in turn calls the partial:Your nested partial can then call the method
yield
: