django–ajax的使用,应用

  • 2019 年 10 月 6 日
  • 筆記

Ajax简介

AJAX(Asynchronous Javascript And XML)翻译成中文就是“异步Javascript和XML”。即使用Javascript语言与服务器进行异步交互,传输的数据为XML(当然,传输的数据不只是XML,现在更多使用json数据)

同步交互:客户端发出一个请求后,需要等待服务器响应结束后,才能发出第二个请求;

异步交互:客户端发出一个请求后,无需等待服务器响应结束,就可以发出第二个请求。

AJAX除了异步的特点外,还有一个就是:浏览器页面局部刷新;(这一特点给用户的感受是在不知不觉中完成请求和响应过程

场景:

优点:

AJAX使用Javascript技术向服务器发送异步请求

AJAX无须刷新整个页面

创建一个新的Django项目:

目录结构如下:

修改urls.py文件,添加一个index路径

from django.contrib import adminfrom django.urls import pathfrom app import viewsurlpatterns = [      path('admin/', admin.site.urls),      path('index/', views.index),  ]

修改视图函数views.py

from django.shortcuts import render# Create your views here.def index(request):    return render(request, "index.html")

引入jquery文件,有两种方式

第一种cdn引入

<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>

第二种本地文件引入

在项目目录下面创建一个static的文件夹

修改settting.py文件,添加内容如下:

STATICFILES_DIRS = [      os.path.join(BASE_DIR, "static")  ]

创建一个jquery.min.js文件,把jquery的内容复制进去就好

在templates模版下,创建index,html文件,内容如下:

<!DOCTYPE html>  <html lang="en">  <head>      <meta charset="UTF-8">      <title>Title</title>      <script src="/static/jquery.min.js"></script>  </head>  <body>  <button class="btn">click</button><script>   $(".btn").click(function () {          alert(123)    })</script></body>  </html>

启动Django,访问

http://127.0.0.1:8000/index

发送ajax请求

修改index.html文件

<!DOCTYPE html>  <html lang="en">  <head>      <meta charset="UTF-8">      <title>Title</title>      <script src="/static/jquery.min.js"></script>  </head>  <body>  <button class="btn">click</button><script>   $(".btn").click(function () {          // 发送Ajax请求       $.ajax({              url:"http://127.0.0.1:8000/books/",              type:"get", // 默认get请求              success:function (data) {  //回调函数,拿到数据后的操作              console.log(data)            }          })    })</script></body>  </html>

新建路径books,修改urls.py文件

from django.contrib import adminfrom django.urls import pathfrom app import viewsurlpatterns = [      path('admin/', admin.site.urls),      path('index/', views.index),      path('books/', views.books),]

新建视图函数:

from django.shortcuts import render,HttpResponse# Create your views here.def index(request):    return render(request, "index.html")def books(request):    return HttpResponse("金瓶梅")

访问http://127.0.0.1:8000/index

点击按钮,局部刷新,返回数据

增加标签:

修改index.html文件

<!DOCTYPE html>  <html lang="en">  <head>      <meta charset="UTF-8">      <title>Title</title>      <script src="/static/jquery.min.js"></script>  </head>  <body>  <button class="btn">click</button>  <p class="con"></p><script>   $(".btn").click(function () {          // 发送Ajax请求        $.ajax({             url:"http://127.0.0.1:8000/books/",             type:"get", // 默认get请求             success:function (data) {  //回调函数,拿到数据后的操作                 console.log(data);                 $(".con").html(data)  //往p标签里面添加内容   }          })    })</script></body>  </html>

访问http://127.0.0.1:8000/index

举例:做一个加法计算

修改index.html

<!DOCTYPE html>  <html lang="en">  <head>      <meta charset="UTF-8">      <title>Title</title>      <script src="/static/jquery.min.js"></script>  </head>  <body>  <button class="btn">click</button>  <p class="con"></p><hr>  <button class="cal">计算</button><script>   $(".btn").click(function () {          // 发送Ajax请求       $.ajax({              url:"http://127.0.0.1:8000/books/",              type:"get", // 默认get请求              success:function (data) {  //回调函数,拿到数据后的操作                console.log(data);                $(".con").html(data)  //往p标签里面添加内容   }          })    })      // 利用ajax发送数据      $(".cal").click(function () {          $.ajax({              url:"/cal/",              type:"get",              data:{                  a:1,                  b:2,   },              success:function (data) {                  console.log(data)            }          })    })</script></body>  </html>

修改视图函数

from django.shortcuts import render,HttpResponse# Create your views here.def index(request):    return render(request, "index.html")def books(request):    return HttpResponse("金瓶梅")def cel(request):    a = request.GET.get("a")      b = request.GET.get("b")      res = int(a) + int(b)      return HttpResponse(str(res)

本文载自: http://www.py3study.com/Article/details/id/329.html