Получение значения None в файле views.py из Ajax

Я пытаюсь получить id объекта модели django из шаблона с помощью ajax. Но я не могу получить точное значение данных в views.py.Я получаю значение None для id в представлениях. Где я ошибся? Вот мой код Views.py:



def is_ajax(request):
    return request.META.get('HTTP_X_REQUESTED_WITH') == 'XMLHttpRequest'

def home(request):
     return render(request, 'home/home.html') 

def index(request):    
    # If you have passed any data through the 'data' property 
    #you can get it here, according to the method used.
    ##if is_ajax(request=request):
        id = request.GET.get('data')
        msg = testing.objects.exclude(id = id).first()
    # Note that we are passing the 'ajax_comments.html' template.
        #return render(request, 'practice.html', {'text': msg, 'id':id})
    ##else:
        ##msg = testing.objects.last()
        return render(request, 'practice.html', {'text': msg, 'id': id} )       

    #comments = Comment.objects.all.first()
    #return render(request, 'practice.html', {'comments': comments})

Шаблон:

{% extends 'base.html'%}

{%block head %} {%endblock%}

{%block navbar %} {% endblock %}

{%block navsmall %} {% endblock %}

{% block header%}

{% endblock %}

{% block firstgrid%}

{%endblock%}
{%block secondgrid%}
<div id = 'myTest'>
{{text.text}} <br> {{id}}
<button class = "asd" value="{{text.td}}">Button</button>
</div>
<script>
      $(".asd").click(function(e){
        e.preventDefault();
        var id = $(this).val();
        $.ajax({
            method: 'GET',  // defaults to GET. Set POST if you like, but be aware of the CSRF token submission too!
            url: "{% url 'practice' %}",  // submit to the same url
            data: {'data': id},  // pass here any data to the server. You can omit it.
            success: function(data) {
                // This function will run when server returns data
                $('#my-Test').replaceWith(data);
                alert('ok');
                console.log(id);
            },
            error: (error) => {
                console.log('error');
              }
        });
      });
    </script>   

{%endblock%}      

{%block footer%}

{%endblock%}

В представлениях я получаю значение None в id

Вернуться на верх