从Flask转换到Django

wfauudbj  于 2023-04-22  发布在  Go
关注(0)|答案(1)|浏览(165)

Django的数据类型flash.wrappers.response的等价物是什么?

if request.method == "GET":
    data = open("print.txt","r")        
    response_r = app.response_class(
        response=data,
        status=200,
        mimetype='text/plain'
    )

如上面的代码所示,response_r的数据类型()是flash.wrappers.Response,我想在Django中使用这段代码(不是flask)。

bhmjp9jg

bhmjp9jg1#

这是Django的等价物:

from django.http import HttpResponse

def view(request):
    if request.method == "GET":
        data = open("print.txt", "r")   
        return HttpResponse(data, content_type="text/plain")

相关问题