HarmonyOS 将URL编码(百分比编码)的字符串转化为对应的汉字应该使用哪个API?

HarmonyOS 将URL编码(百分比编码)的字符串转化为对应的汉字应该使用哪个API。

HarmonyOS
4天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

​decodeURIComponent(解码)是ts自带的能力。

可以参考以下代码:​

@Entry 
@Component 
struct Index{ 
  aboutToAppear(): void { 
    let url = encodeURIComponent("https://www.huawei.com/?文章") 
    console.log('decodeURIComponent' + decodeURIComponent(url)) 
  } 
  build() {} 
}
分享
微博
QQ
微信
回复
4天前
相关问题
HarmonyOS URL特殊字符编码
456浏览 • 1回复 待解决
HarmonyOS base64编码API
39浏览 • 1回复 待解决
字符串重复指定次数
273浏览 • 1回复 待解决
如何处理应用存在URL编码
763浏览 • 1回复 待解决
检查字符串是否以给定字符串开头
354浏览 • 1回复 待解决
检查字符串是否以给定字符串结尾
282浏览 • 1回复 待解决
Color.Black如何转成对应颜色编码
1885浏览 • 1回复 待解决
如何JSON字符串转为Map
206浏览 • 1回复 待解决