有没有办法“绑定” Rails 控制器的部分视图?
我想做的是在显示部分视图的内容之前在控制器中进行一些初始化编码。
例如,如果向分部视图传递了对象的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你粘贴的内容应该有效..你怎么知道它不起作用?
编辑
基本上,您不会从控制器渲染部分内容,而是在另一个视图内渲染部分内容。通过传递
:locals
您可以访问特定的变量:并在您的部分中:
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:and in your partial: