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