Omonbude Emmanuel
Software Engineer
HTML/CSS/JAVASCRIPT
PYTHON
DJANGO/DJANGO REST FRAMEWORK
NODE JS
DOCKER, AWS, KUBERNATES
FIREBASE, PostgreSQL, MySQL,Mongo DB
FLUTTER
DART
ANGULAR
TYPESCRIPT

How to use ajax in django template

Omonbude Emmanuel | Oct. 10, 2023, 1:27 p.m.

69

Introduction

AJAX (Asynchronous JavaScript and XML) is a powerful technique for creating dynamic and interactive web applications. By using AJAX, you can send and receive data from the server without reloading the entire page, resulting in a smoother user experience. In this guide, we’ll explore how to integrate AJAX into a Django template to enhance the interactivity of your web applications.

Prerequisites

Before we embark on our AJAX journey, ensure you have the following:

  • Django Project: A Django project set up and running.
  • Basic understanding of JavaScript and HTML: Familiarity with these languages is essential for crafting AJAX requests and handling responses.

For this tutorial, we will send a post request to our server by submitting a form

1. views.py

# views.py
from django.http import JsonResponse
from django.shortcuts import render
 

def my_view(request):
    if request.method == "POST":
        data = request.POST.get('data', '')
        response_data = {'message': f"You sent: {data}"}
        return JsonResponse(response_data)
    return render(request, 'my_template.html')


2. Configure URLs
 

# urls.py
from django.urls import path
from . import views

urlpatterns = [
    path('ajax/', views.my_view, name='my_view'),
]

 3. Designing our template
 

<!-- templates/my_template.html -->
<!DOCTYPE html>
<html>
<head>
<title>AJAX in Django</title>
</head>
<body>
<h1>AJAX in Django</h1>
<form id="myForm">
<input type="text" name="first_name" placeholder="Enter first name">
<input type="hidden" name="csrfmiddlewaretoken" id="csrfmiddlewaretoken" value="{{ csrf_token }}">
<button type="button" onclick="submitForm()">Submit</button>
</form>
<div id="result"></div>

<script>

function submitForm() {
varcsrfmiddlewaretoken = document.querySelector("#csrfmiddlewaretoken").value
var datatoSubmit = document.querySelector('input[name="first_name"]').value;

const url = "{% url 'my_view' %}"; // Replace with your view URL pattern
var formData = { 'first_name': datatoSubmit};
const method = "POST";

const xhr = new XMLHttpRequest();
xhr.open(method, url, true); // Asynchronous request

// Include CSRF token for security (refer to CSRF section below)
xhr.setRequestHeader("X-CSRFToken", csrfmiddlewaretoken);

xhr.onload = function() {
if (xhr.status === 200) {
const data = JSON.parse(xhr.responseText);
document.getElementById("result").innerHTML = data.message; // Update DOM
} else {
console.error("Error submitting data:", xhr.statusText);
}
};
xhr.send(formData); // Send form data
}
</script>
</body>
</html>

 

When the button is clicked, it triggers the submitForm function which submits the form to our backend which can be processed further. 
Django uses CSRF tokens to protect against Cross-Site Request Forgery attacks, which occur when a malicious website tricks a user into submitting a form or making a request to your Django application, that is why we added the X-CSRFToken header when sending the request.
With this, you can perform other actions like GET, DELETE, PATCH, PUT etc.

Conclusion

By following the steps outlined in this post, developers can easily integrate AJAX into their Django projects, enhancing the user experience and improving performance. This integration improves the responsiveness of your application, providing a smoother and more modern user experience.

 

© 2024 Omonbude Emmanuel

Omonbude Emmanuel