GetJSON请求,Fetch请求

GetJSON请求 

$("#Btn").click(function () {
                var data = {
                    name: $("#txtName").val(),
                    pwd: $("#txtPwd").val()
                };
                $.getJSON("/GetJsonQJ/GetJsonPage", data, function (result) {
                    //console.log(result);
                    if (result.state == 0) {
                        var notebooks = result.data;
                        showPageNotebooks(notebooks, page);
                        $(document).data('page', ++page);
                    } else {
                        alert(result.message);
                    }
                });
            });

Fetch请求

$("#Btn").click(function () {
                const data = {
                    name: $("#txtName").val(),
                    age: $("#txtPwd").val()
                };
                fetch('/GetJsonQJ/GetJsonPage', {
                    method: 'POST',
                    headers: {
                        'Content-Type': 'application/json',
                    },
                    //body: JSON.stringfy(data), // "{"name":"Billy","age":18}"
                });
            });

你可能感兴趣的:(GetJSON请求,Fetch请求)