从javascript中获取Django中的HttpResponse

问题描述 投票:1回答:1

我有一个django端点:

def endpoint(request):
    return HttpResponse("Hello!")

我在JS中这样称呼它:

fetch(baseUrl + "endpoint", {
      method: "POST",
    }).then(function(data) {
        // HOW DO I ACCESS THE "Hello!"?
    });

我如何访问你好!在.then部分?谢谢!!

我有一个django端点:def端点(请求):return HttpResponse(“ Hello!”)我在JS中这样称呼它:fetch(baseUrl +“ endpoint”,{方法:“ POST”,})。then(函数(数据){...

javascript python django post
1个回答
2
投票

类似这样的东西:

© www.soinside.com 2019 - 2024. All rights reserved.