Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
1e73b2ef
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
1e73b2ef
编写于
6月 08, 2022
作者:
O
openharmony_ci
提交者:
Gitee
6月 08, 2022
浏览文件
操作
浏览文件
下载
差异文件
!5131 示例代码修改
Merge pull request !5131 from zengyawen/master
上级
fe69536d
c3681c65
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
12 addition
and
13 deletion
+12
-13
zh-cn/application-dev/reference/apis/js-apis-hilog.md
zh-cn/application-dev/reference/apis/js-apis-hilog.md
+0
-1
zh-cn/application-dev/reference/apis/js-apis-plainarray.md
zh-cn/application-dev/reference/apis/js-apis-plainarray.md
+1
-1
zh-cn/application-dev/reference/apis/js-apis-radio.md
zh-cn/application-dev/reference/apis/js-apis-radio.md
+1
-1
zh-cn/application-dev/reference/apis/js-apis-sim.md
zh-cn/application-dev/reference/apis/js-apis-sim.md
+1
-1
zh-cn/application-dev/reference/apis/js-apis-uri.md
zh-cn/application-dev/reference/apis/js-apis-uri.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-webSocket.md
zh-cn/application-dev/reference/apis/js-apis-webSocket.md
+5
-5
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-hilog.md
浏览文件 @
1e73b2ef
# 日志打印
hilog日志系统,使应用/服务可以按照指定级别、标识和格式字符串输出日志内容,帮助开发者了解应用/服务的运行状态,更好地调试程序。
以下文档仅对接口功能进行描述,具体的日志打印要求请参考
[
OpenHarmony日志打印规范
](
../../../contribute/OpenHarmony-Log-guide.md
)
。
> **说明:**
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
...
...
zh-cn/application-dev/reference/apis/js-apis-plainarray.md
浏览文件 @
1e73b2ef
...
...
@@ -153,7 +153,7 @@ getIndexOfKey(key: number): number
let
plainArray
=
new
PlainArray
();
plainArray
.
add
(
1
,
"
sddfhf
"
);
plainArray
.
add
(
2
,
"
sffdfhf
"
);
let
result
=
plainArray
.
getIndexOfKey
(
"
sdfs
"
);
let
result
=
plainArray
.
getIndexOfKey
(
2
);
```
...
...
zh-cn/application-dev/reference/apis/js-apis-radio.md
浏览文件 @
1e73b2ef
...
...
@@ -408,7 +408,7 @@ isNrSupported\(slotId: number\): boolean
```
js
let
slotId
=
0
;
let
result
=
radio
.
isNrSupported
(
slotId
);
console
.
log
(
result
);
console
.
log
(
"
Result:
"
+
result
);
```
...
...
zh-cn/application-dev/reference/apis/js-apis-sim.md
浏览文件 @
1e73b2ef
...
...
@@ -521,7 +521,7 @@ getMaxSimCount\(\): number
**示例:**
```
js
console
.
log
(
sim
.
getMaxSimCount
())
console
.
log
(
"
Result:
"
+
sim
.
getMaxSimCount
())
```
...
...
zh-cn/application-dev/reference/apis/js-apis-uri.md
浏览文件 @
1e73b2ef
...
...
@@ -6,7 +6,7 @@
## 导入模块
```
```
js
import
uri
from
'
@ohos.uri
'
```
...
...
@@ -14,7 +14,7 @@ import uri from '@ohos.uri'
### 属性
**系统能力:**
以下各项对应的系统能力均为
SystemCapability.Utils.Lang
**系统能力:**
SystemCapability.Utils.Lang
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
...
...
@@ -41,7 +41,7 @@ constructor是URI的构造函数。
| 参数名 | 类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
| ur
l
| string | 是 | 是 | 入参对象。 |
| ur
i
| string | 是 | 是 | 入参对象。 |
**示例:**
...
...
@@ -71,7 +71,7 @@ toString(): string
**示例:**
```
js
const
url
=
new
uri
.
UR
L
(
'
http://username:password@host:8080/directory/file?query=pppppp#qwer=da
'
);
const
url
=
new
uri
.
UR
I
(
'
http://username:password@host:8080/directory/file?query=pppppp#qwer=da
'
);
url
.
toString
()
```
...
...
zh-cn/application-dev/reference/apis/js-apis-webSocket.md
浏览文件 @
1e73b2ef
...
...
@@ -23,7 +23,7 @@ import webSocket from '@ohos.net.webSocket';
var
defaultIpAddress
=
"
ws://
"
;
let
ws
=
webSocket
.
createWebSocket
();
ws
.
on
(
'
open
'
,
(
err
,
value
)
=>
{
console
.
log
(
"
on open, status:
"
+
value
.
status
+
"
, message:
"
+
value
.
message
);
console
.
log
(
"
on open, status:
"
+
value
[
'
status
'
]
+
"
, message:
"
+
value
[
'
message
'
]
);
// 当收到on('open')事件时,可以通过send()方法与服务器进行通信
ws
.
send
(
"
Hello, server!
"
,
(
err
,
value
)
=>
{
if
(
!
err
)
{
...
...
@@ -47,7 +47,7 @@ ws.on('message', (err, value) => {
}
});
ws
.
on
(
'
close
'
,
(
err
,
value
)
=>
{
console
.
log
(
"
on close, code is
"
+
value
.
code
+
"
, reason is
"
+
value
.
reason
);
console
.
log
(
"
on close, code is
"
+
value
[
'
code
'
]
+
"
, reason is
"
+
value
[
'
reason
'
]
);
});
ws
.
on
(
'
error
'
,
(
err
)
=>
{
console
.
log
(
"
on error, error:
"
+
JSON
.
stringify
(
err
));
...
...
@@ -393,7 +393,7 @@ on\(type: 'open', callback: AsyncCallback<Object\>\): void
```
js
let
ws
=
webSocket
.
createWebSocket
();
ws
.
on
(
'
open
'
,
(
err
,
value
)
=>
{
console
.
log
(
"
on open, status:
"
+
value
.
status
+
"
, message:
"
+
value
.
message
);
console
.
log
(
"
on open, status:
"
+
value
[
'
status
'
]
+
"
, message:
"
+
value
[
'
message
'
]
);
});
```
...
...
@@ -421,7 +421,7 @@ off\(type: 'open', callback?: AsyncCallback<Object\>\): void
```
js
let
ws
=
webSocket
.
createWebSocket
();
let
callback1
=
(
err
,
value
)
=>
{
console
.
log
(
"
on open, status:
"
+
value
.
status
+
"
, message:
"
+
value
.
message
);
console
.
log
(
"
on open, status:
"
+
value
[
'
status
'
]
+
"
, message:
"
+
value
[
'
message
'
]
);
}
ws
.
on
(
'
open
'
,
callback1
);
// 可以指定传入on中的callback取消一个订阅,也可以不指定callback清空所有订阅
...
...
@@ -505,7 +505,7 @@ on\(type: 'close', callback: AsyncCallback<\{ code: number, reason: string \}\>\
```
js
let
ws
=
webSocket
.
createWebSocket
();
ws
.
on
(
'
close
'
,
(
err
,
value
)
=>
{
console
.
log
(
"
on close, code is
"
+
value
.
code
+
"
, reason is
"
+
value
.
reason
);
console
.
log
(
"
on close, code is
"
+
value
[
'
code
'
]
+
"
, reason is
"
+
value
[
'
reason
'
]
);
});
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录