24

如果我点击这个网址:http://localhost:3000/reports/action.xlsx它会显示一个生成的 xlsx 文件。

如果我有link_to这样的:

<%= link_to 'Export to Excel', reports_affirmative_action_path, :format => :xlsx %>

它会生成一个指向此页面的链接: http://localhost:3000/reports/action

为什么我的 link_to:format => :xlsx没有链接到正确的路径?

4

2 回答 2

44

你的link_topath稍有偏差。你要

<%= link_to('Export to Excel', reports_affirmative_action_path(format: :xlsx)) %>

其中格式是path助手的参数,而不是link_to.

于 2013-04-16T18:43:11.103 回答
-2

为我工作
<%= link_to('Export to Excel', reports_affirmative_action_path(:format => :xls)) %>

使用 :xls 而不是 :xlsx

于 2015-10-29T14:37:21.903 回答