我正在使用 Django 下载这样的 CSV 文件:
response['Content-Type'] = 'application/force-download'
response['Cache-Control'] = 'public'
response['Content-Disposition'] = 'attachment; filename="results.csv"'
writer = UnicodeWriter(response, quoting=csv.QUOTE_ALL, encoding="utf-8")
它适用于 FF、Chrome、IE>=9 但不适用于 IE<=8
有谁知道有什么区别?