rcp模块能力发起post请求

rcp模块能力发起post请求

HarmonyOS
2024-05-28 20:40:54
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
是潘达不是胖达

本模块提供HTTP数据请求功能。应用程序可通过HTTP发起数据请求。常见的HTTP方法包括GET、POST、HEAD、PUT、DELETE、PATCH、OPTIONS。

使用模块功能实现POST请求发送

使用的核心API

@rcp.Session.Post

核心代码解释

Http_PostRcp() { 
  const session = rcp.createSession(); 
  const content: rcp.RequestContent = { 
    "name":"张三" 
  } 
  session.post("https://www.baidu.com", content).then((response) => { 
    console.log("xcy---------" + response.toString()); 
    AlertDialog.show( 
      { 
        title: 'request接口回调结果', 
        message: '请求网站:' + '百度' + '\n\n' + 'Callback Data: ' + response.toString(), 
      }) 
  }).catch((err:BusinessError)=> { 
    AlertDialog.show( 
      { 
        title: 'request接口回调结果', 
        message: '请求失败,错误信息:', 
      }) 
    console.error("xcy err:"); 
  }); 
}

注明适配的版本信息

IDE版本:4.1.3.500

SDK版本:HarmonyOS Next Developer Preview 1

分享
微博
QQ
微信
回复
2024-05-29 21:44:31
相关问题
使用rcp模块能力发送Get请求
980浏览 • 1回复 待解决
RCP发起请求时如何设置超时时间
576浏览 • 1回复 待解决
求告知如何发起HTTP请求
425浏览 • 1回复 待解决
HarmonyOS rcp请求拦截器
509浏览 • 1回复 待解决
HarmonyOS Rcp.post上传图库文件至服务器
223浏览 • 1回复 待解决
HarmonyOS http 请求 post 参数问题
904浏览 • 1回复 待解决
没有专类Post请求接口公共请求
2946浏览 • 1回复 待解决
如何设置发起网络请求的权限
474浏览 • 1回复 待解决
网络请求rcp和httpRequest的关系和区别
364浏览 • 1回复 待解决