*Django中的Ajax jq的书写样式1

导入插件,导入jquery,json是添加的json文件

Ajax的get请求与post请求

urls.py

python 复制代码
path('in3/',views.in3),

views.py

python 复制代码
def in3(request):
    return render(request,'07.html')

要返回数据的path没有写,html就是下面图片中控制台的内容,记得传递参数

07.html【get请求】

html 复制代码
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="{% static 'jquery-3.6.0.min.js' %}"></script>
</head>
<body>
    用户名:<input type="text"><br>
    密码:<input type="password">
    <button>send</button>
    <script>
        $('button').click(function (){
            $.ajax({
                url:'/p2/',
                method:'get',
                data: {
                    name:$('input[type=text]').val(),
                    pwd:$('input[type=password]').val(),
                },
                // 上面的data是传入数据,下面的data是返回的数据
                success:function (data){
                    console.log(data)
                },
                error:function (xhr, status, error){
                    console.log(error)
                }
            })
        })
    </script>
</body>
</html>

07.html【post请求】

html 复制代码
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    {% csrf_token %}
    <script src="{% static 'jquery-3.6.0.min.js' %}"></script>
</head>
<body>
    用户名:<input type="text"><br>
    密码:<input type="password">
    <button>send</button>
    <script>
        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 = jQuery.trim(cookies[i]);
                    // Does this cookie string begin with the name we want?
                    if (cookie.substring(0, name.length + 1) === (name + '=')) {
                        cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                        break;
                    }
                }
            }
            return cookieValue;
        }
        $(function (){
            $('button').click(function (){
                $.ajax({
                    url:'/p2/',
                    method:"post",
                    data: {
                        name:$('input[type=text]').val(),
                        pwd:$('input[type=password]').val(),
                    },
                    beforeSend: function (xhr) {
                        xhr.setRequestHeader("X-CSRFToken", getCookie("csrftoken"));
                    },
                    success:function (data){
                        console.log(data)
                    }
                })
            })
        })
    </script>
</body>
</html>

post请求比get请求要多一个csrf请求头,不写报404错误

绝大多数情况使用get,传递密码这些用post,post只是相对于get安全点

edge浏览器

Google浏览器

请求头,返回数据都是一样的,有报错的话,还是使用谷歌浏览器,Edge浏览器有些报错信息写的不详细

Json文件

json文件要放在static文件下才会识别到

data.json

html 复制代码
{
  "total": 4,
  "data": [
    {
      "name": "三国演义",
      "category": "文学",
      "desc": "一个军阀混战的年代"
    },{
      "name": "三国演义2",
      "category": "文学2",
      "desc": "一个军阀混战的年代2"
    }
  ],
  "obj": {"adf": "adf"}
}

urls.py

python 复制代码
#获取json数据
path('in4/',views.in4)

#json数据
path('gjson/', views.Jsond, name='gjson'),

views.py

python 复制代码
def Jsond(request):#JsonResponse(json文件)
    with open('static/data.json', 'r') as json_file:
        data = json.load(json_file)
    response = JsonResponse(data)

    # 设置X-Content-Type-Options头部
    response['X-Content-Type-Options'] = 'nosniff'

    return response


def in4(request):
    return render(request,'08.html')

json也可以写为这样,不过要导入JsonResponse

python 复制代码
from django.http import JsonResponse

def Jsond(request):#JsonResponse(json文件)
    with open('static/data.json', 'r') as json_file:
        data = json.load(json_file)

    return JsonResponse(data)

08.html

html 复制代码
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="{% static 'jquery-3.6.0.min.js' %}"></script>
    <style>
        h3{
            color:darkorange;
        }
    </style>
</head>
<body>
    <button>click</button>
    <hr>
    <ul>
        <!-- 存放ul -->
    </ul>
<script>
    $(function (){
        $('button').click(function (){
            $.ajax({
                url:'/static/data.json',
                method:'get',
                cache: false,
                success:function (da){
                    {#console.log(da)//直接就是json格式#}
                    arr=da.data
                    str=''
                    for(var i=0;i<arr.length;i++){
                        {#网络不稳定时会报错但不影响使用#}
                        str+=`<li>
                                        <h3>书名:${arr[i].name}</h3>
                                        <h6>类别:${arr[i].name}</h6>
                                        <p>简介:${ arr[i].desc}</p>
                                    </li>`;
                    }
                    $('ul').html(str)
                },
                error:function (xhr,status,error){
                    console.log(error)
                }
            })
        })
    })
</script>
</body>
</html>

这里多了cashe,默认为true,缓存请求的数据至浏览器,以减少下次请求时间,【改变json文件后,需要改为false或关闭浏览器重新启动服务器,用以清除缓存好的数据】

点击click后

相关推荐
数据小爬虫@2 小时前
深入解析:使用 Python 爬虫获取苏宁商品详情
开发语言·爬虫·python
健胃消食片片片片2 小时前
Python爬虫技术:高效数据收集与深度挖掘
开发语言·爬虫·python
Ai 编码助手5 小时前
在 Go 语言中如何高效地处理集合
开发语言·后端·golang
小丁爱养花5 小时前
Spring MVC:HTTP 请求的参数传递2.0
java·后端·spring
ℳ₯㎕ddzོꦿ࿐5 小时前
解决Python 在 Flask 开发模式下定时任务启动两次的问题
开发语言·python·flask
CodeClimb5 小时前
【华为OD-E卷 - 第k个排列 100分(python、java、c++、js、c)】
java·javascript·c++·python·华为od
一水鉴天5 小时前
为AI聊天工具添加一个知识系统 之63 详细设计 之4:AI操作系统 之2 智能合约
开发语言·人工智能·python
Channing Lewis5 小时前
什么是 Flask 的蓝图(Blueprint)
后端·python·flask
B站计算机毕业设计超人5 小时前
计算机毕业设计hadoop+spark股票基金推荐系统 股票基金预测系统 股票基金可视化系统 股票基金数据分析 股票基金大数据 股票基金爬虫
大数据·hadoop·python·spark·课程设计·数据可视化·推荐算法
觅远6 小时前
python+playwright自动化测试(四):元素操作(键盘鼠标事件)、文件上传
python·自动化