1

我在这里有这个动作:

def download
 send_file 'C:/Sites/solver/public/test.zip'
end

当我从我的 html 执行它时,没有任何反应,也没有下载任何内容。

但这是它产生的日志:

Started POST "/ssh/download" for 127.0.0.1 at 2014-04-03 11:06:17 -0400
Processing by SshController#download as */*
Sent file C:/Sites/solver/public/test.zip (0.0ms)
Completed 200 OK in 5ms (ActiveRecord: 0.0ms)

任何人都可以帮助我了解缺少什么?

谢谢!

4

1 回答 1

0

在您看来,添加一个download选项,例如:

link_to 'Download', download_path(id), download: "file"
于 2018-03-22T17:33:27.823 回答