在我的 rails 3 应用程序中,我提供了一个 CSV 模板供用户下载。无需下载它,只需在新选项卡中打开文本。这是代码:
<a href="/templates/myFile.csv" target="_blank">click here</a>
这以前对我有用,我不确定会发生什么改变来破坏它。与此类似的其他问题建议添加target='_blank'
或更改标题,但我没有太多运气这样做。
我不认为它应该有所作为,但这个链接是在一个模态的里面,他的身体来自这里:
<div class="modal hide" id="helpModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<%= modal_header "Help" %>
<div class="modal-body">
<%= render 'help' %>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>