代码如下所示:
const blackBodyType = getUXK()["excludeB"] || ['multipart/form-data;']
function inBlackList(type: string, body: any) {
const lowerType = type?.toLowerCase() || ''
let flag = false
blackBodyType.forEach(item => {
if(lowerType.indexOf(item) > -1) {
flag = true
}
})
if(body instanceof FormData) {
flag = true
}
return flag
}
HarmonyOS原生的网络请求类http如何发送表单请求,请参考该链接中的方法:
https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/remote-communication-rcp-V5\#section1188301010515