2
我使用回形針上傳文件(僅限PDF),現在想在視圖中將它們顯示爲PDF。顯示使用回形針上傳的PDF文件
這給了我一個空架<iframe src="<% @document.file %>"></iframe>
這導致圖像<%= image_tag @document.file(:large) %>
的文件存儲在postgress英寸
我使用回形針上傳文件(僅限PDF),現在想在視圖中將它們顯示爲PDF。顯示使用回形針上傳的PDF文件
這給了我一個空架<iframe src="<% @document.file %>"></iframe>
這導致圖像<%= image_tag @document.file(:large) %>
的文件存儲在postgress英寸
你有一個語法中的 「問題」:
<iframe src="<% @document.file %>"></iframe>
應該
<iframe src="<%= @document.file %>"></iframe>
<!-- notice the equals symbol (=) -->
<!-- which prints something into erb file. -->
而且,我相信你需要使用它的url
,所以我想是這樣的:
<iframe src="<%= @document.file.url(:large) %>"></iframe>
更多信息 - What is the difference between <%, <%=, <%# and -%> in ERB in Rails?
謝謝;意識到差異但忘記使用它(RoR新增功能)。 –
試過了 - iframe的空 –