一条记录是否可以有多个部分?

发布于 2024-11-15 09:12:10 字数 213 浏览 1 评论 0原文

我有评论、地点和用户的表格。

我目前有一个 _review.html.erb 部分,它在场馆显示页面上显示对场馆的评论。

是否可以有另一个名为 _profile_review.html.erb 的部分,并让它在用户显示页面中显示用户撰写的所有评论?

我想要两个不同的部分进行评论,这样我就可以对每个部分进行不同的设计。

非常感谢您的帮助,非常感谢!

I have tables of reviews, venues and users.

I currently have a _review.html.erb partial which displays reviews for a venue on the venues show page.

Is it possible to have another partial called _profile_review.html.erb and have it display all the reviews written by a user in the users show page?

I want to have 2 differant partials for reviews so I can style each differantly.

Thanks very much for any help its much appreciated!

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

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

发布评论

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

评论(1

╰沐子 2024-11-22 09:12:10

您是否知道可以使用 :locals 选项将任何变量传递给局部变量?

render :partial => "whatever", :locals => {:foo => bar}
# bar is available as local variable foo within _whatever.erb

顺便提一句。如果你想让一些局部变量可选,你可以使用以下技巧来避免“没有这样的变量”错误:

- optional_variable ||= nil # defines optional_variable without overwriting it

我认为使用这个你应该能够做任何你能想象的事情:)。

Are you aware that you can pass any variables to a partial using the :locals option?

render :partial => "whatever", :locals => {:foo => bar}
# bar is available as local variable foo within _whatever.erb

Btw. if you want to make some local variables optional you can use the following trick to avoid a 'no such variable' error:

- optional_variable ||= nil # defines optional_variable without overwriting it

I think using this you should be able to do whatever you can imagine :).

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