HarmonyOS 鸿蒙Next:http怎么以POST的方式,把数据通过application/x-www-form-urlencoded放到body里传输

发布于 1周前 作者 eggper 最后一次编辑是 5天前 来自 鸿蒙OS

HarmonyOS 鸿蒙Next:http怎么以POST的方式,把数据通过application/x-www-form-urlencoded放到body里传输

http怎么以POST的方式,把数据通过application/x-www-form-urlencoded,放到body里传输

我这边的主要代码如下,但是接口一直提示获取不到参数

let method = http.RequestMethod.POST

let header:ParamsInterface = {

“Authorization”:token,

‘Content-Type’: ‘application/x-www-form-urlencoded’,

‘ClientOS’: ‘HarmonyOS’,

‘OS’: 'HarmonyOS '+ deviceInfo.osFullName,

‘Brand’ : deviceInfo.marketName,

// ‘AppVersion’: info?.versionName?info!!.versionName:"",

‘AppVersion’: ‘8.7.3’,

‘AppVersionCode’: ‘’+ info?.versionCode?info!!.versionCode:"",

‘User-Agent’:userAgent,

‘udId’:udid,

‘appKey’:appkey,

}

let httpRequest = http.createHttp()

let httpResult = httpRequest.request(url,{

method: method,

readTimeout: 1000 * 30,

connectTimeout: 1000 * 30,

usingCache: false,

header:header,

extraData:upData

}

upData是{“classId”:1,“newsId”:1887258,“sayText”:"%E6%B5%8B%E8%AF%95",“pId”:0,“grandPid”:0}


更多关于HarmonyOS 鸿蒙Next:http怎么以POST的方式,把数据通过application/x-www-form-urlencoded放到body里传输的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html

2 回复
http发送post请求时设置的extraData参数当前规格不会拼接携带在请求地址后面,因此采用application/x-www-form-urlencoded的方式并不能把参数拼接到url上面后端也获取不到参数。

是需要的参数直接拼接到url上面

更多关于HarmonyOS 鸿蒙Next:http怎么以POST的方式,把数据通过application/x-www-form-urlencoded放到body里传输的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


在HarmonyOS鸿蒙Next中,通过HTTP POST方式将数据以application/x-www-form-urlencoded格式放到body里传输,可以使用ohos.network.http.HttpRequest类。以下是具体实现步骤:

  1. 创建HttpRequest对象

    var request = new ohos.network.http.HttpRequest();
    request.url = "你的目标URL";
    request.method = ohos.network.http.HttpMethod.POST;
    
  2. 设置请求头

    request.setHeader("Content-Type", "application/x-www-form-urlencoded");
    
  3. 构建请求体

    var params = "param1=value1&param2=value2"; // 替换为实际参数
    request.send(params);
    
  4. 处理响应

    request.on("response", (err, response) => {
        if (err) {
            console.error("请求失败: ", err);
        } else {
            console.log("响应数据: ", response.data);
        }
    });
    

以上代码演示了如何在HarmonyOS鸿蒙Next中使用POST方法,将数据以application/x-www-form-urlencoded格式传输。如果问题依旧没法解决请联系官网客服,官网地址是:https://www.itying.com/category-93-b0.html。

回到顶部