Skip to content
On this page

POST 已发布

post请求方法

使用示例

ts
request.post('/user/save', {
	user_id: 1
})
	.then((res) => {
		// 此处可自定义业务逻辑
	})
	.catch((err) => {
		// 此处仅为演示
		console.error('请求服务异常');
	});

本文档内容版权为 Lwu-Request 官方团队所有,保留所有权利。