Rails 使用实例变量渲染带有局部变量的文件

发布于 2024-11-17 05:28:43 字数 401 浏览 1 评论 0原文

我刚刚更新到 Rails 2.3.11。在早期版本中,我可以编写以下

render :file=>'console/users/show.html.erb', :locals => {:@user => @users.first}

不再有效的内容,相反,我需要编写

render :file=>'console/users/show.html.erb', :locals => {:user => @users.first}

这意味着访问文件中的用户,我将使用“user”,但在文件中我想使用实例变量@user,如下所示从控制器调用相同的显示文件并传递@user

有任何提示吗?

谢谢

I've just updated to Rails 2.3.11. In an earlier version I could write the following

render :file=>'console/users/show.html.erb', :locals => {:@user => @users.first}

which no longer works, instead I need to write

render :file=>'console/users/show.html.erb', :locals => {:user => @users.first}

which means to access the user in the file I would use 'user' but in the file I would like to use the instance variable @user as this same show file is called from the controller and passes @user

Any tips?

Thanks

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

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

发布评论

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

评论(1

私野 2024-11-24 05:28:43

在调用 render 之前设置 @user

@user = @users.first
render :file=>'console/users/show.html.erb'

只有在传递局部变量时才应使用 :locals 选项。

Set @user before calling render:

@user = @users.first
render :file=>'console/users/show.html.erb'

The :locals option should only be used if you are passing local variables through.

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