HarmonyOS url如何进行URL编码和解码?

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

参考TypeScript 语法, 提供了encodeURL 以及 encodeURIComponent 两种编码方式:

@Entry
@Component
struct Index {
  @State message: string = 'Hello World';
  name: string = "张三";
  build() {
    Row() {
      Column() {
        Text(this.message)
          .fontSize(25)
          .fontWeight(FontWeight.Bold)

        Button(){
          Text('encodeURIComponent')
            .fontSize(25)
        }
        .margin({bottom: 20})
        .type(ButtonType.Capsule)
        .onClick(() => {
          this.message = encodeURIComponent("http://example.com?name=" +this.name);
        })

        Button(){
          Text('decodeURIComponent')
            .fontSize(25)
        }
        .margin({bottom: 20})
        .type(ButtonType.Capsule)
        .onClick(() => {
          this.message = decodeURIComponent(this.message);
        })


        Button(){
          Text('encodeURI')
            .fontSize(25)
        }
        .margin({bottom: 20})
        .type(ButtonType.Capsule)
        .onClick(() => {
          this.message = encodeURI("http://example.com/index.html?name=" + this.name);
        })

        Button(){
          Text('decodeURI')
            .fontSize(25)
        }
        .margin({bottom: 20})
        .type(ButtonType.Capsule)
        .onClick(() => {
          this.message = decodeURI(this.message);
        })
      }
      .width('100%')
    }
    .height('100%')
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS URL编码问题
98浏览 • 1回复 待解决
HarmonyOS TLV格式编码和解码
369浏览 • 1回复 待解决
实现文本的编码和解码机制。
531浏览 • 1回复 待解决
HarmonyOS URL特殊字符编码
976浏览 • 1回复 待解决
HarmonyOS URL的gbk解编码
71浏览 • 1回复 待解决
如何处理应用存在的URL编码
1078浏览 • 1回复 待解决
如何进行解码操作,有人知道吗?
464浏览 • 1回复 待解决
如何进行base64编码,有人知道吗?
775浏览 • 1回复 待解决
对指定url的图片进行下载保存
1288浏览 • 1回复 待解决
HarmonyOS uri编码解码问题
185浏览 • 1回复 待解决
HarmonyOS 如何拦截web加载url
36浏览 • 1回复 待解决
HarmonyOS lottie支持url吗?
413浏览 • 1回复 待解决
HarmonyOS url 无法传+号
169浏览 • 1回复 待解决
HarmonyOS webview加载url白屏
223浏览 • 1回复 待解决
HarmonyOS Web 加载URL异常
656浏览 • 1回复 待解决