我有以下樱桃功能。该功能假设使用CSV文件进行响应。但是,它不起作用,我得到以下响应:Something went wrong here List(UnacceptedResponseContentTypeRejection(WrappedArray(text/csv)))
。
@cherrypy.expose
def myFunction(self, id, a):
url = "clusters/downAsCSV?id=" + id + "&a=" + a + "&csv=true"
htmlText = self.general_url(url)
cherrypy.response.headers['Content-Type'] = 'text/csv'
return htmlText
当我将相同的网址粘贴到浏览器中时,它确实有效并且CSV已下载到客户端。
可能是什么原因?