Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
815a75f1
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看板
提交
815a75f1
编写于
9月 26, 2022
作者:
X
xuzhihao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix issues of Ability docs
Signed-off-by:
N
xuzhihao
<
xuzhihao16@huawei.com
>
上级
daea4687
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
14 deletion
+16
-14
zh-cn/application-dev/reference/apis/js-apis-application-shellCmdResult.md
...-dev/reference/apis/js-apis-application-shellCmdResult.md
+9
-9
zh-cn/application-dev/reference/apis/js-apis-processrunninginfo.md
...lication-dev/reference/apis/js-apis-processrunninginfo.md
+7
-5
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-application-shellCmdResult.md
浏览文件 @
815a75f1
...
...
@@ -8,17 +8,17 @@
## 使用说明
通过abilityDelegator中的
executeShellCommand
方法来获取。
通过abilityDelegator中的
[
executeShellCommand
](
js-apis-application-abilityDelegator.md#executeshellcommand
)
方法来获取。
```
js
import
AbilityDelegatorRegistry
from
'
@ohos.application.abilityDelegatorRegistry
'
var
abilityDelegator
;
var
cmd
=
"
cmd
"
;
var
timeout
=
100
;
import
AbilityDelegatorRegistry
from
"
@ohos.application.abilityDelegatorRegistry
"
;
let
abilityDelegator
;
let
cmd
=
"
cmd
"
;
abilityDelegator
=
AbilityDelegatorRegistry
.
getAbilityDelegator
();
abilityDelegator
.
executeShellCommand
(
cmd
,
timeout
).
then
((
data
:
any
)
=>
{
console
.
info
(
"
executeShellCommand promise
"
);
abilityDelegator
.
executeShellCommand
(
cmd
,
(
err
:
any
,
data
:
any
)
=>
{
console
.
info
(
"
executeShellCommand callback, failed:
"
,
err
);
console
.
info
(
"
executeShellCommand callback, success:
"
,
data
);
});
```
...
...
@@ -30,5 +30,5 @@ Shell命令执行结果
| 名称 | 类型 | 可读 | 可写 | 说明 |
| --------- | ------ | ---- | ---- | ------------------------------------------------------------ |
| stdResult | string | 是 | 是 | 标准输出内容 |
| exitCode | number | 是 | 是 | 结果码 |
| stdResult | string | 是 | 是 | 标准输出内容
。
|
| exitCode | number | 是 | 是 | 结果码
。
|
zh-cn/application-dev/reference/apis/js-apis-processrunninginfo.md
浏览文件 @
815a75f1
# ProcessRunningInfo<sup>(deprecated)</sup>
ProcessRunningInfo
模块提供对进程运行信息进行设置和查询的能力。
本
模块提供对进程运行信息进行设置和查询的能力。
> **说明:**
> - 本模块接口从API
V
ersion 9 开始废弃,建议使用[ProcessRunningInformation<sup>9+</sup>](js-apis-processrunninginformation.md)替代。
> - 本模块接口从API
v
ersion 9 开始废弃,建议使用[ProcessRunningInformation<sup>9+</sup>](js-apis-processrunninginformation.md)替代。
> - 本模块首批接口从API version 8 开始支持。
## 使用说明
通过appManager来获取。
通过appManager
中
[
getProcessRunningInfos
](
js-apis-appmanager.md#appmanagergetprocessrunninginfosdeprecated
)
方法
来获取。
```
js
import
appManager
from
'
@ohos.application.appManager
'
;
appManager
.
getProcessRunningInfos
((
error
,
data
)
=>
{
console
.
log
(
"
getProcessRunningInfos error:
"
+
error
.
code
+
"
data:
"
+
JSON
.
stringify
(
data
));
app
.
getProcessRunningInfos
().
then
((
data
)
=>
{
console
.
log
(
'
success:
'
+
JSON
.
stringify
(
data
));
}).
catch
((
error
)
=>
{
console
.
log
(
'
failed:
'
+
JSON
.
stringify
(
error
));
});
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录