如何从django中的数据库下载blob字段中的数据?

use*_*817 4 django blob

我有一个表,其中有一个包含一些数据的 blob 列,如何在 django 中下载 blob 内容?我尝试了这里提到的解决方案但对我不起作用

Tho*_*mas 5

def download_blob(request, id):

    contents = BlobModel.objects.get(id=id).blob_field

    response = HttpResponse(contents)
    response['Content-Disposition'] = 'attachment; filename=blob.bin'
    return response
Run Code Online (Sandbox Code Playgroud)