//一個(gè)公用的ajax模板
function loadKind() {
let sendData = {};
$.ajax({
type: 'get',
url : '/api/species',
//url: '/api/one/new/list?p=1',
data: sendData,
dataType: 'json',
success: function (data) {
if (data) {
//請(qǐng)求成功
} else {
alert(data.msg);
}
},
error: function () {
//alert("");
}
});
}
//一個(gè)公用的ajax模板
function loadKind() {
let sendData = {};
$.ajax({
type: 'get',
url : '/api/species',
//url: '/api/one/new/list?p=1',
data: sendData,
dataType: 'json',
success: function (data) {
if (data) {
//請(qǐng)求成功
} else {
alert(data.msg);
}
},
error: function () {
//alert("");
}
});
}