Creating a JSON response using Django and Python

后端 未结 15 2348
温柔的废话
温柔的废话 2020-11-22 06:02

I\'m trying to convert a server side Ajax response script into a Django HttpResponse, but apparently it\'s not working.

This is the server-side script:



        
15条回答
  •  逝去的感伤
    2020-11-22 06:39

    Django code views.py:

    def view(request):
        if request.method == 'POST':
            print request.body
            data = request.body
            return HttpResponse(json.dumps(data))
    

    HTML code view.html:

    
    
    
    
    
    
    
    
    
    {{data}}
    Select your favorite fruit:

提交回复
热议问题