Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
989195e3
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看板
提交
989195e3
编写于
5月 05, 2023
作者:
B
bianxinbo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
api10andonhttperror
Signed-off-by:
N
bianxinbo
<
bianxinbo@huawei.com
>
上级
67c186fb
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
33 addition
and
9 deletion
+33
-9
arkui/ace_ets_web_dev/AppScope/app.json
arkui/ace_ets_web_dev/AppScope/app.json
+3
-3
arkui/ace_ets_web_dev/entry/src/main/ets/MainAbility/pages/web.ets
..._ets_web_dev/entry/src/main/ets/MainAbility/pages/web.ets
+8
-2
arkui/ace_ets_web_dev/entry/src/main/ets/test/WebJsunit.test.ets
...ce_ets_web_dev/entry/src/main/ets/test/WebJsunit.test.ets
+1
-1
arkui/ace_ets_web_dev/entry/src/main/module.json
arkui/ace_ets_web_dev/entry/src/main/module.json
+6
-0
arkui/ace_ets_web_dev_four/entry/src/main/module.json
arkui/ace_ets_web_dev_four/entry/src/main/module.json
+6
-0
arkui/ace_ets_web_dev_two/AppScope/app.json
arkui/ace_ets_web_dev_two/AppScope/app.json
+3
-3
arkui/ace_ets_web_dev_two/entry/src/main/module.json
arkui/ace_ets_web_dev_two/entry/src/main/module.json
+6
-0
未找到文件。
arkui/ace_ets_web_dev/AppScope/app.json
浏览文件 @
989195e3
...
...
@@ -11,10 +11,10 @@
"distributedNotificationEnabled"
:
true
,
"keepAlive"
:
true
,
"singleUser"
:
true
,
"minAPIVersion"
:
9
,
"targetAPIVersion"
:
9
,
"minAPIVersion"
:
10
,
"targetAPIVersion"
:
10
,
"car"
:
{
"apiCompatibleVersion"
:
9
,
"apiCompatibleVersion"
:
10
,
"singleUser"
:
false
}
}
...
...
arkui/ace_ets_web_dev/entry/src/main/ets/MainAbility/pages/web.ets
浏览文件 @
989195e3
...
...
@@ -56,6 +56,8 @@ struct Index {
@State webVisibility: Visibility = Visibility.Visible
@State isProgressFinish:boolean=false
@State isHttpErrorReceive:boolean=false
@State isLargeThan:boolean=false
onPageShow(){
let valueChangeEvent={
eventId:10,
...
...
@@ -414,7 +416,7 @@ struct Index {
case "emitOnHttpErrorReceive":{
this.isHttpErrorReceive=true
await Utils.sleep(1000)
this.controller.loadUrl({url:'http
s://example1.com/path/does/not/exist/index.jsp
'})
this.controller.loadUrl({url:'http
://1.1.1.123/index.html
'})
break;
}
case "emitOnTitleReceive":{
...
...
@@ -651,7 +653,11 @@ struct Index {
if(this.isHttpErrorReceive){
console.info("isHttpErrorReceive==>")
this.httpErrorReceive = event.response.getResponseCode()
Utils.emitEvent(this.httpErrorReceive,66)
if(this.httpErrorReceive>400){
this.isLargeThan=true
Utils.emitEvent(this.isLargeThan,66)
}
this.isLargeThan=false
this.isHttpErrorReceive=false
}
})
...
...
arkui/ace_ets_web_dev/entry/src/main/ets/test/WebJsunit.test.ets
浏览文件 @
989195e3
...
...
@@ -449,7 +449,7 @@ export default function webJsunit() {
*/
it('onHttpErrorReceive',0,async function(done){
emitKey="emitOnTitleReceive";
Utils.registerEvent("onHttpErrorReceive",
404
,66,done);
Utils.registerEvent("onHttpErrorReceive",
true
,66,done);
sendEventByKey('webcomponent',10,'');
})
/*
...
...
arkui/ace_ets_web_dev/entry/src/main/module.json
浏览文件 @
989195e3
...
...
@@ -14,6 +14,12 @@
"installationFree"
:
false
,
"uiSyntax"
:
"ets"
,
"pages"
:
"$profile:main_pages"
,
"metadata"
:
[
{
"name"
:
"ArkTSPartialUpdate"
,
"value"
:
"true"
}
],
"abilities"
:
[{
"name"
:
"com.example.myapplication.MainAbility"
,
"srcEntrance"
:
"./ets/MainAbility/MainAbility.ts"
,
...
...
arkui/ace_ets_web_dev_four/entry/src/main/module.json
浏览文件 @
989195e3
...
...
@@ -14,6 +14,12 @@
"installationFree"
:
false
,
"uiSyntax"
:
"ets"
,
"pages"
:
"$profile:main_pages"
,
"metadata"
:
[
{
"name"
:
"ArkTSPartialUpdate"
,
"value"
:
"true"
}
],
"abilities"
:
[{
"name"
:
"com.example.myapplication.MainAbility"
,
"srcEntrance"
:
"./ets/MainAbility/MainAbility.ts"
,
...
...
arkui/ace_ets_web_dev_two/AppScope/app.json
浏览文件 @
989195e3
...
...
@@ -11,10 +11,10 @@
"distributedNotificationEnabled"
:
true
,
"keepAlive"
:
true
,
"singleUser"
:
true
,
"minAPIVersion"
:
9
,
"targetAPIVersion"
:
9
,
"minAPIVersion"
:
10
,
"targetAPIVersion"
:
10
,
"car"
:
{
"apiCompatibleVersion"
:
9
,
"apiCompatibleVersion"
:
10
,
"singleUser"
:
false
}
}
...
...
arkui/ace_ets_web_dev_two/entry/src/main/module.json
浏览文件 @
989195e3
...
...
@@ -14,6 +14,12 @@
"installationFree"
:
false
,
"uiSyntax"
:
"ets"
,
"pages"
:
"$profile:main_pages"
,
"metadata"
:
[
{
"name"
:
"ArkTSPartialUpdate"
,
"value"
:
"true"
}
],
"abilities"
:
[{
"name"
:
"com.example.myapplication.MainAbility"
,
"srcEntrance"
:
"./ets/MainAbility/MainAbility.ts"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录