How to give the xls file link in ruby. This is my file path
link_to "Excel", "/#{RAILS_ROOT}/public/reports/10014_ByNetwork.xls", :target=>"_blank"
當我上面給出的鏈接是將這樣的如何在Ruby on Rails中提供xls文件鏈接?
<a href="//home/kiran/shekar/wavespot/public/reports/10014_ByNetwork.xls" target="_blank">Excel</a>
因此,它不能正常工作。其實我需要這樣的
<a href="file:///home/kiran/shekar/wavespot/public/reports/10014_ByNetwork.xls" target="_blank">Excel</a>
請給我確切的路徑...
你知道,這個鏈接只會在你的計算機上工作,不會在任何其他工作,對不對? – BroiSatse 2014-10-22 09:42:58
是的,我只需要在我的電腦中 – user748447 2014-10-22 09:50:06