Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
5029d351
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看板
提交
5029d351
编写于
6月 01, 2023
作者:
C
cbw11zero
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix code format
Signed-off-by:
N
cbw11zero
<
chenbowei7@huawei.com
>
上级
8591ea8a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
9 addition
and
9 deletion
+9
-9
zh-cn/application-dev/reference/apis/js-apis-hisysevent.md
zh-cn/application-dev/reference/apis/js-apis-hisysevent.md
+9
-9
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-hisysevent.md
浏览文件 @
5029d351
...
...
@@ -313,8 +313,8 @@ try {
| beginTime | number | 是 | 查询的系统事件起始时间(13位时间戳)。 |
| endTime | number | 是 | 查询的系统事件结束时间(13位时间戳)。 |
| maxEvents | number | 是 | 查询的系统事件最多条数。 |
| fromSeq
| number | 否 | 查询的开始序列号
|
| toSeq
| number | 否 | 查询的结束序列号
|
| fromSeq
<sup>
10+
</sup>
| number | 否 | 查询的系统事件起始序列号,默认值为-1。
|
| toSeq
<sup>
10+
</sup>
| number | 否 | 查询的系统事件结束序列号,默认值为-1。
|
## QueryRule
...
...
@@ -326,7 +326,7 @@ try {
| -------- | -------- | -------- | -------- |
| domain | string | 是 | 查询包含的事件领域。 |
| names | string[] | 是 | 查询所包含的多个事件名称,每个查询规则对象包含多个系统事件名称。 |
| condition
| string | 否 | 事件的额外参数条件,格式:{"version":"V1","condition":{"and":[{"param":"参数","op":"操作符",
<br/>
"value":"比较值"}]}} |
| condition
<sup>
10+
</sup>
| string | 否 | 事件的额外参数条件,格式:{"version":"V1","condition":{"and":[{"param":"参数","op":"操作符",
"value":"比较值"}]}} |
## Querier
...
...
@@ -408,11 +408,11 @@ try {
}
```
## hiSysEvent.exportSysEvents
## hiSysEvent.exportSysEvents
<sup>10+</sup>
exportSysEvents(queryArg: QueryArg, rules: QueryRule[]): number
导出批量
系统事件,以文件格式写入应用沙箱固定目录(/data/storage/el2/base/cache/hiview/event/)。
批量导出
系统事件,以文件格式写入应用沙箱固定目录(/data/storage/el2/base/cache/hiview/event/)。
**需要权限:**
ohos.permission.READ_DFX_SYSEVENT
...
...
@@ -475,7 +475,7 @@ try {
// 延迟读取本次导出的事件
setTimeout(function() {
let eventDir =
context.getApplicationContext().cacheDir + '
/hiview/event';
let eventDir =
'/data/storage/el2/base/cache
/hiview/event';
let filenames = fs.listFileSync(eventDir);
for (let i = 0; i < filenames.length; i++) {
if (filenames[i].indexOf(time.toString()) != -1) {
...
...
@@ -490,7 +490,7 @@ try {
}
```
## hiSysEvent.subscribe
## hiSysEvent.subscribe
<sup>10+</sup>
subscribe(rules: QueryRule[]): number
...
...
@@ -552,7 +552,7 @@ try {
// 延迟读取订阅的事件
setTimeout(function() {
let eventDir =
context.getApplicationContext().cacheDir + '
/hiview/event';
let eventDir =
'/data/storage/el2/base/cache
/hiview/event';
let filenames = fs.listFileSync(eventDir);
for (let i = 0; i < filenames.length; i++) {
let res = fs.readTextSync(eventDir + '/' + filenames[i]);
...
...
@@ -565,7 +565,7 @@ try {
}
```
## hiSysEvent.unsubscribe
## hiSysEvent.unsubscribe
<sup>10+</sup>
unsubscribe(): void
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录