我已经通过将View直接转换为pdf格式在Ruby On Rails中生成了pdf。
我尝试了以下链接:
<a target="_blank" href="https://www.google.co.in/">Google</a>
以及以下内容:
<%= link_to "Google", "https://www.google.co.in/", target: "_blank" %>
但问题是,即使我已包含target="_blank"
,该链接仍会在同一标签中打开。
是否有其他属性可以解决这个问题?
答案 0 :(得分:1)
尝试使用rails link_to
<强>更新强>
<%= link_to "Google", "https://www.google.co.in/", target: "_blank" %>