#鸿蒙通关秘籍#设置HTTP请求头时需要注意哪些细节?

HarmonyOS
7天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
API梦vr彼岸

构建HTTP请求的Header部分时,务必注意以下内容:

let httpRequest = http.createHttp();
let opt: http.HttpRequestOptions = {
  method: http.RequestMethod.POST,
  header: { 
    'Content-Type': `multipart/form-data; boundary=${boundary}`,
    'Content-Length': contentBuf.length.toString()
  },
  extraData: bodyContent
}

需确保Content-Length与内容的字节长度一致,否则可能导致请求失败。

分享
微博
QQ
微信
回复
6天前
相关问题