$.get方法用于发送get请求,$.post方法用于发送post请求。
$.get('请求地址', {name: 'zhangsan', age: 30}, function (response) {})
$.post('请求地址', {name: 'lisi', age: 22}, function (response) {})
- 请求地址
- 请求参数:可以是对象,可以是字符串,可以不写
- 回调函数:响应成功后执行
示例:
客户端:
$('#btn').on('click', function () {
$.get('/base', 'name=zhangsan&age=30', function (response) {
console.log(response);
})
});
服务器端:
app.get('/base', (req, res) => {
res.send({
name: 'zhangsan',
age: 30
})
});
客户端:
$('#btn').on('click', function () {
$.post('/base', function (response) {
console.log(response);
})
});
服务器端:
app.post('/base', (req, res) => {
res.status(400).send({
name: 'zhaoliu',
age: 35,
})
});