在grails中制作下载选项
可能的重复:
Grails 文件下载
我正在接受网络开发培训。我想制作一个显示所有文件的页面在 D://downloads 目录中。我在 grails 中制作了该部分。如果我单击特定文件,我想下载该文件。我不知道如何制作该部分。我进行了谷歌搜索。但我不能这样做。
我的代码是
<g:each in="${fileList}" var="filename" status="i">
${filename}
<!-- Codes to make a file downloadable-->
</g:each>
Possible Duplicate:
Grails File Download
I am in the training of web developement.I want make a page which shows all the files in the D://downloads directory.I made that part in grails.If i click on the particular file i want download that file.I dont know how to make that part.I did a google search.But i cannot do that.
My code is
<g:each in="${fileList}" var="filename" status="i">
${filename}
<!-- Codes to make a file downloadable-->
</g:each>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需设置正确的标头,以便浏览器知道它是需要下载的文件。 我不知道如何在 grails 中做到这一点。 http://support.microsoft.com/kb/260519
You just need to set the right headers so that the browser knows its a file that it needs to download. I'm not sure how to do that in grails. http://support.microsoft.com/kb/260519