我有一个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(函数(数据){...
类似这样的东西: