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

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

HarmonyOS
2024-11-04 12:26:06
浏览
收藏 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
微信
回复
2024-11-04 16:59:51
相关问题
HarmonyOS URL特殊字符编码
532浏览 • 1回复 待解决
字符串重复指定次数
304浏览 • 1回复 待解决
HarmonyOS base64编码API
104浏览 • 1回复 待解决
检查字符串是否以给定字符串开头
423浏览 • 1回复 待解决
检查字符串是否以给定字符串结尾
321浏览 • 1回复 待解决
如何JSON字符串转为Map
236浏览 • 1回复 待解决
如何处理应用存在URL编码
806浏览 • 1回复 待解决