我在用
response.headers['Content-Type'] = gluon.contenttype.contenttype('.xls')
response.headers['Content-disposition'] = 'attachment; filename=projects.xls'
生成另存为对话框。
有没有办法让用户获得选定的路径?
最佳答案
浏览器将向用户显示“另存为”对话框,然后将您的内容写入该文件。它不会通知服务器内容保存到的路径。恐怕您无法获得该信息。
关于python - 从响应中获取选定的路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3434088/