Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
cc6cb32d
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
cc6cb32d
编写于
12月 09, 2022
作者:
O
openharmony_ci
提交者:
Gitee
12月 09, 2022
浏览文件
操作
浏览文件
下载
差异文件
!6782 web组件xts用例优化
Merge pull request !6782 from 章靖/monthly_20221018
上级
839b3891
2af290df
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
28 addition
and
19 deletion
+28
-19
arkui/ace_ets_web_dev/entry/src/main/ets/MainAbility/pages/web.ets
..._ets_web_dev/entry/src/main/ets/MainAbility/pages/web.ets
+28
-19
未找到文件。
arkui/ace_ets_web_dev/entry/src/main/ets/MainAbility/pages/web.ets
浏览文件 @
cc6cb32d
...
...
@@ -35,7 +35,7 @@ struct Index {
@State errorReceive:string=""
@State httpErrorReceive:number=0
@State titleReceive:string=""
@State
downloadStart:string=""
@State
isDownloadStart:boolean=false
@State javaScriptAccess:boolean=true
@State fileAccess:boolean=true
@State domStorageAccess:boolean=false
...
...
@@ -55,6 +55,8 @@ struct Index {
@State mixedSwitch:boolean=false
@State mixedAllSwitch:boolean=false
@State overViewFalseHeight:number=0
@State isProgressFinish:boolean=false
@State isHttpErrorReceive:boolean=false
onPageShow(){
let valueChangeEvent={
eventId:10,
...
...
@@ -145,7 +147,11 @@ struct Index {
if(this.enterPageEnd){
Utils.emitEvent(this.newScale,97)
this.enterPageEnd=false
}
}else if(this.isProgressFinish){
console.info("isProgressFinish==>")
Utils.emitEvent(this.progress,114)
this.isProgressFinish=false
}
})
.onConsole((event) => {
this.console = event.message.getMessage()
...
...
@@ -178,13 +184,22 @@ struct Index {
}
})
.onHttpErrorReceive((event) => {
this.httpErrorReceive = event.response.getResponseCode()
if(this.isHttpErrorReceive){
console.info("isHttpErrorReceive==>")
this.httpErrorReceive = event.response.getResponseCode()
Utils.emitEvent(this.httpErrorReceive,66)
this.isHttpErrorReceive=false
}
})
.onTitleReceive((event) => {
this.titleReceive = event.title
})
.onDownloadStart((event) => {
this.downloadStart = event.url
if(this.isDownloadStart){
console.info("isDownloadStart==>")
Utils.emitEvent(event.url,68)
this.isDownloadStart=false
}
})
.onScaleChange((event)=>{
console.log("onScaleChange==>")
...
...
@@ -243,7 +258,7 @@ struct Index {
break;
}
case "emitOnUrlLoadIntercept":{
this.controller.loadUrl({url:"https://
www.
gitee.com/"})
this.controller.loadUrl({url:"https://gitee.com/"})
setTimeout(()=>{
Utils.emitEvent(loadedUrl,104)
},3000)
...
...
@@ -278,10 +293,9 @@ struct Index {
break;
}
case "emitOnProgressChange":{
this.isProgressFinish=true
await Utils.sleep(1000)
this.controller.loadUrl({url:"https://www.gitee.com"})
setTimeout(()=>{
Utils.emitEvent(this.progress,114)
},3000)
break;
}
case "emitOnRefreshAccessedHistory":{
...
...
@@ -595,14 +609,10 @@ struct Index {
},3000)
break;
}
case "emitOnHttpErrorReceive":{
case "emitOnHttpErrorReceive":{
this.isHttpErrorReceive=true
await Utils.sleep(1000)
this.controller.loadUrl({url:'https://example1.com/path/does/not/exist/index.jsp'})
setTimeout(()=>{
this.controller.loadUrl({url:'https://example1.com/path/does/not/exist/index.jsp'})
setTimeout(()=>{
Utils.emitEvent(this.httpErrorReceive,66)
},3000)
},3000)
break;
}
case "emitOnTitleReceive":{
...
...
@@ -612,11 +622,10 @@ struct Index {
},3000)
break;
}
case "emitOnDownloadStart":{
case "emitOnDownloadStart":{
this.isDownloadStart=true
await Utils.sleep(1000)
this.controller.loadUrl({url:"https://consumer.huawei.com/content/dam/huawei-cbg-site/cn/mkt/mobileservices/2022/download/PC107f1b3947c942ffaa14334a879065d8.2107261020.exe"})
setTimeout(()=>{
Utils.emitEvent(this.downloadStart,68)
},5000)
break;
}
case "emitSetCookie":{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录