美文网首页
Flask下载文件使用中文名字

Flask下载文件使用中文名字

作者: 鹊南飞_ | 来源:发表于2020-06-10 16:19 被阅读0次

    Flask下载文件使用中文名字

    示例代码

    from urllib.parse import unquote, quote
    
    
    ..............
    ..............
        # 文件名,使用quote函数
        filename= quote('测试' + '.docx')
        # 文件路径
        filepath = '/home/测试.docx'
        rv = send_file(filepath, as_attachment=True, attachment_filename=filename)
        rv.headers['Content-Disposition'] += "; filename*=utf-8''{}".format(filename)
        return rv
    

    相关文章

      网友评论

          本文标题:Flask下载文件使用中文名字

          本文链接:https://www.haomeiwen.com/subject/cnsptktx.html