sedコマンドを使用して次のコード行をコメントアウトしたいと思います。
実際のコード:
response = HttpResponse()
response['Content-Disposition'] = 'attachment; filename=%s.zip' % file_name.replace('.shp','')
response['Content-length'] = str(len(zip_stream))
response['Content-Type'] = mimetype
response.write(zip_stream)
return response
私が欲しかったもの:
#response = HttpResponse()
#response['Content-Disposition'] = 'attachment; filename=%s.zip' % file_name.replace('.shp','')
#response['Content-length'] = str(len(zip_stream))
#response['Content-Type'] = mimetype
#response.write(zip_stream)
#return response
唯一の問題は、ファイルが巨大でresponse
どこにでも含まれていることです。したがって、上記の提供に従って、検索をより具体的にする必要があります。
指定されたコードブロックは、特定のファイルのソースコード全体の中央にあります。