#鸿蒙通关秘籍#如何在鸿蒙应用开发中实现GET和POST请求?

HarmonyOS
3h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
时光旅人NoSQL

通过封装的h_request库,可以轻松实现GET和POST请求:

  1. 使用GET请求:
http.get('/swiperdata').then((res) => {
  console.log(res.data);
}).catch((error) => {
  console.error(error);
});
  1. 使用POST请求:
http.post('/hotmovie', { start: 0, count: 1, city: "郑州" }).then((res) => {
  console.log(res.data);
}).catch((error) => {
  console.error(error);
});
  1. GET请求带参数:
http.get('api/v1/musicsearchlrc', { params: { id: "543656129", kind: "wy" } }).then((res) => {
  console.log(res.data);
}).catch((error) => {
  console.error(error);
});
分享
微博
QQ
微信
回复
1h前
相关问题