我有一个这样的网址:" http://localhost:8001/browse/4/766821590082433/" 当我点击按钮下载excel文件我的网址得到:" http://localhost:8001/browse/4/766821590082433//export/xls/"。 在我的urls.py
url(r' export / xls / $',main.export_users_xls,name =' export_users_xls')
但是当我通过任何其他网址时,如:" http://localhost:8001/browse/4/766821590082433/?earliest=2018-01-10&latest=2018-01-17"我无法下载excel文件 和网址更新为:http://localhost:8001/browse/4/766821590082433/?earliest=2018-01-10&latest=2018-01-17/export/xls/
我得到的错误是未转换的数据:/ export / xls /
任何想法如何解决这个问题,即使url有参数也要下载excel数据。