jQuery-Ajax请求-ajax方法

况野
2023-12-01

<!DOCTYPE html>
<html lang="zh">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>

<body>
    <div id="box"></div>
    <script src="./jquery.js"></script>
    <script>


        // $.ajax(url, settings)
        // $.ajax('http://192.168.1.35:8080/api/list_students', {
        //     method: 'GET',
        //     success: function(data, textStatus, xhr) {
        //         console.log(data)
        //     },
        //     dataType: 'json'
        // })

        // $.ajax(settings)
        $.ajax({
            async: false,  // 指定同步请求还是异步请求,默认值为 true,表示异步请求
            url: 'http://192.168.1.35:8080/api/save_student',
            method: 'POST',
            success: function (data, textStatus, xhr) {
                console.log(data)
            },
            error: function (xhr, textStatus, error) {
                console.log(xhr, textStatus, error)
            },
            timeout: function () {

            },
            dataType: 'json',
            data: {
                name: '杨柯',
                age: 20,
                gender: '男',
                clazz: '火花18',
                remark: '戴眼镜',
                tel: '119',
                address: '郑州'
            }
        })

        // 如果不传递 dataType 选项,则 jQ 会自动猜测服务器返回的数据是什么类型
        // dataType: 'json'/'script'/'html'/xml
    </script>
</body>

</html>
 类似资料: