HarmonyOS 鸿蒙Next api9,axios发送post请求如何传递body参数(data参数)
HarmonyOS 鸿蒙Next api9,axios发送post请求如何传递body参数(data参数)
请求是成功的,但是后端收不到data中的参数,能接收到header中的参数。人傻了,官方文档也看不懂,不知道该怎么写
2 回复
首先,鸿蒙API12已经发布了,建议切换到API12进行开发,后续升级的版本会兼容API12,但不会兼容API9。
另外,axios发送post请求可以参考这个:
interface user {
firstName: string,
lastName: string
}
axios.post<string, AxiosResponse<string>, user>('/user', {
firstName: 'Fred',
lastName: 'Flintstone'
})
.then((response: AxiosResponse<string>) => {
console.info(JSON.stringify(response));
})
.catch((error) => {
console.info(JSON.stringify(error));
});
更多关于HarmonyOS 鸿蒙Next api9,axios发送post请求如何传递body参数(data参数)的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html