HarmonyOS encodeURIComponent

怎么实现类似功能const imgParams = encodeURIComponent(imgBase64Str)

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

字符串编码:

 @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 = "http://example.com/index.html?url=" + encodeURIComponent("http://example.com?name=" +this.name); }) 
Button(){
 Text('encodeURI')
 .fontSize(25) }
 .margin({bottom: 20}) .type(ButtonType.Capsule)
 .onClick(() => {
 this.message = encodeURI("http://example.com/index.html?name=" + this.name); }) }
 .width('100%') } .height('100%')
 }
 }
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS jsbridge HarmonyOS版本
90浏览 • 1回复 待解决
HarmonyOS HarmonyOS社区组件问题
325浏览 • 1回复 待解决
HarmonyOS 关于HarmonyOS应用的备案
36浏览 • 1回复 待解决
HarmonyOS flutter接入HarmonyOS原生视图
74浏览 • 1回复 待解决
HarmonyOS JsBridge的HarmonyOS版本sdk
80浏览 • 1回复 待解决
HarmonyOS
57浏览 • 1回复 待解决
HarmonyOS h5和HarmonyOS怎么通信?
161浏览 • 1回复 待解决
HarmonyOS HarmonyOS的视频流和操作流
37浏览 • 1回复 待解决
HarmonyOS RotateOptions
15浏览 • 1回复 待解决
HarmonyOS floatingActionButton
14浏览 • 1回复 待解决
HarmonyOS Tabs
29浏览 • 1回复 待解决
HarmonyOS LazyForEach
342浏览 • 1回复 待解决
HarmonyOS responseRegion
227浏览 • 1回复 待解决
HarmonyOS Websocket?
146浏览 • 0回复 待解决
HarmonyOS NodeRender
16浏览 • 1回复 待解决
HarmonyOS DatePicker
20浏览 • 1回复 待解决
HarmonyOS TabContent
482浏览 • 1回复 待解决
HarmonyOS HarmonyOS应用开发是否支持c++20
100浏览 • 1回复 待解决