gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 07:13:33 25 4
gpt4 key购买 nike

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

最佳答案

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

关于django - 如何从 django 数据库中下载 blob 字段中的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17923139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com