Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django - taking values from POST request, JavaScript fetch API

Sorry if this is a noob question, I am creating a Django app and for that I am trying to access data received from POST request, using JavaScript fetch API but it is showing empty . I can't get what my mistake is. I have tried to remove all unnecessary parts to debug.The error is in this part:

Code of my views.py

def checkdb(request):
    if request.method == "POST":
        a = request.POST.get('tag', 'default')
        print("printing", a)
        print(request.POST)
    return HttpResponse("Hello")

def check(request):
    return render(request, 'shop/new.html')

Code of URLS.py

urlpatterns = [
    path('', views.index, name="shop"),
    path('checkdb/', views.checkdb, name="checkdb"),
    path('check/', views.check, name="check"),
]

Code of new.html, it has only script tag to fetch request just for testing purpose.

<script>

data = JSON.stringify({
    headline: "Testing",
    tag: "Testing",
    background_image: "Testing",
    content: "Testing",
    user: 1
})

let csrftoken = getCookie('csrftoken');
let response = fetch("/shop/checkdb/", {
    method: 'POST',
    body: data,
    headers: { 'Accept': 'application/json, text/plain, */*',
        'Content-Type': 'application/json',
        "X-CSRFToken": csrftoken },
})


function getCookie(name) {
    var cookieValue = null;
    if (document.cookie && document.cookie !== '') {
        var cookies = document.cookie.split(';');
        for (var i = 0; i < cookies.length; i++) {
            var cookie = cookies[i].trim();
            if (cookie.substring(0, name.length + 1) === (name + '=')) {
                cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                break;
            }
        }
    }
    return cookieValue;
}

</script>

When i go to endpoint shop/check then its script tag executes and there is no error in console but when i try to print the data received in terminal then it always prints default option i am not getting what is mistake I want to print the data corresponding to key "tag" which is "Testing" but it is giving default option Please help me to find out my mistake.

OUTPUT in terminal

Quit the server with CTRL-BREAK.
[01/May/2020 19:09:02] "GET /shop/check/ HTTP/1.1" 200 1091
printing default
<QueryDict: {}>
[01/May/2020 19:09:02] "POST /shop/checkdb/ HTTP/1.1" 200 5

I am using Django 3.0.4.

Thanks and sorry if there is any silly mistake, i am a newbie in Django

like image 244
Abhishek Pratap Singh Avatar asked May 01 '20 13:05

Abhishek Pratap Singh


People also ask

Can you fetch data from post request?

A fetch() method can be used with many type of requests such as POST, GET, PUT and DELETE. GET method using fetch API: In this example, we are going to use JSONPlaceholder which provides REST API get and post random data such as posts, users, etc.


2 Answers

In my experience, data sent using fetch are not located inside request.POST but rather inside request.body. There are then cases where the received data is in byte so you will need to decode it first. I suggest that you do this first:

if request.method == "POST":
    import json
    post_data = json.loads(request.body.decode("utf-8"))

Then try accessing post_data content like a normal python dictionary to get the value of tag as in post_data.get("tag")

like image 155
Olfredos6 Avatar answered Oct 30 '22 08:10

Olfredos6


As per my research request.POST won't work it only works when there is form data, i solved my issue of accessing the data by using

 data = json.loads(request.body.decode("utf-8"))
 tag = data['tag']
 print(data)
 print(tag)

And to use json.loads() first you have to import json module.

like image 43
Abhishek Pratap Singh Avatar answered Oct 30 '22 06:10

Abhishek Pratap Singh