flask 作为接口返回的类型
#########################################################
#源代码中因为返回的是跳转url,所以写的是resp.text,本案中resp返回的是文件,所以直接返回resp.content原类型
#在其他案例中,如果返回的是下载url,则应该写成return (resp.text, resp.status_code, header)
#########################################################