Rails 3.1 中的渲染模板 Rails.root

发布于 2025-01-07 01:55:34 字数 432 浏览 0 评论 0原文

我需要使用 Rails.root 渲染此 remplate

<%= escape_javascript(render(:template => '#{Rails.root}/app/controllers/posts/repost_new'))%>

,但出现错误:

ActionView::Template::Error (Missing template #{Rails.root}...more

我在视图帖子目录中有文件 repost_new.html.erb...

我有 repost_new 方法posts_controller.rb

问题是什么:S。

Im need render this remplate with Rails.root

<%= escape_javascript(render(:template => '#{Rails.root}/app/controllers/posts/repost_new'))%>

but I get the error:

ActionView::Template::Error (Missing template #{Rails.root}...more

I have the file repost_new.html.erb in views posts directory...

I have repost_new method in posts_controller.rb

What is the problem :S.

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

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

发布评论

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

评论(1

望喜 2025-01-14 01:55:35

请使用双引号而不是单引号。 Ruby 中不会插入单引号字符串。

Please use double quotes instead of single ones. Single quoted strings are not interpolated in Ruby.

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