有没有办法“绑定” Rails 控制器的部分视图?

发布于 2024-10-01 07:40:25 字数 269 浏览 3 评论 0原文

我想做的是在显示部分视图的内容之前在控制器中进行一些初始化编码。

例如,如果向分部视图传递了对象的 ID,那么明智的做法是获取对象本身,然后将其发送到视图。

您可以使用 ASP.NET MVC 轻松完成此操作。然而在 Rails 代码中,这样的代码

def some_partial_view
  @obj = Obj.find(params[:id])
  ...
end

不起作用。

有办法做到这一点吗?

What I want to do is to do some init coding in the controller before showing the contents of the partial view.

For example, if the partial view is passed an ID of the object, it would be wise to get the object itself and then send it to the view.

You can easily do it with ASP.NET MVC. However in Rails code like

def some_partial_view
  @obj = Obj.find(params[:id])
  ...
end

Doesn't work.

Is there a way to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

回心转意 2024-10-08 07:40:25

你粘贴的内容应该有效..你怎么知道它不起作用?


编辑
基本上,您不会从控制器渲染部分内容,而是在另一个视图内渲染部分内容。通过传递 :locals 您可以访问特定的变量:

<%= render :partial => "form", :locals => { :obj => @obj } %>

并在您的部分中:

<%= obj %>

what you've pasted should work.. how do you know it doesn't?


EDIT
basically you wouldn't render a partial from your controller but inside another view. by passing :locals you gain access to specific vars:

<%= render :partial => "form", :locals => { :obj => @obj } %>

and in your partial:

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