1

我正在使用 CarrierWave 将静态 HTML 模板上传到我网页上的某些用户配置文件。

我正在尝试在用户登录后在用户的主页上呈现 HTML 文件。上传后 HTML 文件的路径是:

/uploads/profile/curation/8/User_Content.html

我是 Rails 新手,我以为我能做到

<%= render /uploads/profile/curation/8/User_Content.html %>

让 html 呈现,但我想这仅适用于部分,但事实并非如此。

有什么建议吗?

4

2 回答 2

0

您可以使用render_to_string. 请看这里。http://russbrooks.com/2009/11/18/embed-a-static-hmtl-page-in-a-rails-view

于 2013-03-04T08:00:37.693 回答
-1

在您的控制器中,您可以重定向到您想要的页面:

redirect_to "/uploads/profile/curation/8/User_Content.html"
于 2013-03-04T07:44:15.790 回答