我的一个html.erb页面上有一个指向文本文件的链接。我想打开并在另一个html.erb页面中显示该文本文件,该页面上还有其他一些东西(横幅,菜单栏和其他东西)。
html1.erb
< =链接到file1>
html2.erb
显示了file1.txt
其他东西(按钮,复选框n)
答案 0 :(得分:2)
你试过这个吗?
<%= render :file => '/some/file1.txt' %>
答案 1 :(得分:1)
<%= render file: 'path/to/text', formats: ['txt'] %>