用于 JS 和 HTML 渲染的 Rails 布局

发布于 2024-11-17 07:34:38 字数 370 浏览 3 评论 0原文

好吧,这可能有点奇怪,但问题是:

我有大量类似的控制器/视图交互,我想让它们更加干燥。用户单击一个链接,该链接将被转换为使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鲜血染红嫁衣 2024-11-24 07:34:38

是的,如果您在布局中使用布局,则可以。 (它要求您再构建一个文件,但它将是 DRY。)我不确定这是否是您想要的,但它是如何工作的。

您的嵌套布局可以调用 yield (即使您有一个也调用 yield 的普通布局。对于 js,您的渲染堆栈将继续:
[模板]>> [部分布局]>> [部分]

你的控制器将调用你的普通渲染命令(或者没有,如果它是隐式的)。 (我不知道你想在哪里声明要渲染哪个部分,所以我只是在这里选择。):

def index
  @partial = params[:partial] || 'some_partial'
  respond_to do |format|
    format.js render :template => 'my_template'
  end
end

你的模板,而不是调用部分(some_partial)将调用部分模板,然后,

# my_template
/* Some js ... */
$("#working_div").html("<%= render :layout => "nested_layout", :partial => @partial %>")
/* Some more js ... */

您的嵌套部分可以调用方法 yield

# nested_partial
/* Some js ... */
<%= yield %>
/* Some more js ... */

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 calls yield. 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.):

def index
  @partial = params[:partial] || 'some_partial'
  respond_to do |format|
    format.js render :template => 'my_template'
  end
end

Your template, instead of calling the partial (some_partial) will call a partial template, which in turn calls the partial:

# my_template
/* Some js ... */
$("#working_div").html("<%= render :layout => "nested_layout", :partial => @partial %>")
/* Some more js ... */

Your nested partial can then call the method yield:

# nested_partial
/* Some js ... */
<%= yield %>
/* Some more js ... */
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文