Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
503ae5b9
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看板
未验证
提交
503ae5b9
编写于
8月 25, 2023
作者:
O
openharmony_ci
提交者:
Gitee
8月 25, 2023
浏览文件
操作
浏览文件
下载
差异文件
!22766 新增包管理同步接口文档
Merge pull request !22766 from lishiyu/master
上级
b87b6e99
86fece63
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
118 addition
and
0 deletion
+118
-0
zh-cn/application-dev/reference/apis/js-apis-installer.md
zh-cn/application-dev/reference/apis/js-apis-installer.md
+28
-0
zh-cn/application-dev/reference/apis/js-apis-launcherBundleManager.md
...ation-dev/reference/apis/js-apis-launcherBundleManager.md
+90
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-installer.md
浏览文件 @
503ae5b9
...
...
@@ -91,6 +91,34 @@ try {
}
```
## BundleInstaller.getBundleInstallerSync<sup>10+</sup>
getBundleInstallerSync(): BundleInstaller;
获取并返回BundleInstaller对象。
**系统接口:**
此接口为系统接口。
**系统能力:**
SystemCapability.BundleManager.BundleFramework.Core
**返回值:**
| 类型 | 说明 |
| ------------------------------------------------------------ | ------------------------------------ |
|
[
BundleInstaller
](
js-apis-installer.md#BundleInstaller
)
| 返回BundleInstaller对象。 |
**示例:**
```
ts
import
installer
from
'
@ohos.bundle.installer
'
;
try
{
installer
.
getBundleInstallerSync
();
console
.
info
(
'
getBundleInstallerSync successfully.
'
);
}
catch
(
error
)
{
console
.
error
(
'
getBundleInstallerSync failed. Cause:
'
+
error
.
message
);
}
```
## BundleInstaller.install
install(hapFilePaths: Array
<
string
>
, installParam: InstallParam, callback: AsyncCallback
<
void
>
): void;
...
...
zh-cn/application-dev/reference/apis/js-apis-launcherBundleManager.md
浏览文件 @
503ae5b9
...
...
@@ -115,6 +115,53 @@ try {
}
```
## launcherBundlemanager.getLauncherAbilityInfoSync<sup>10+</sup>
getLauncherAbilityInfoSync(bundleName: string, userId: number) : Array
\<
[
LauncherAbilityInfo
](
js-apis-bundleManager-launcherAbilityInfo.md
)
>;
查询指定bundleName及用户的
[
LauncherAbilityInfo
](
js-apis-bundleManager-launcherAbilityInfo.md
)
。
**需要权限:**
ohos.permission.GET_BUNDLE_INFO_PRIVILEGED
**系统接口:**
此接口为系统接口
**系统能力:**
SystemCapability.BundleManager.BundleFramework.Launcher
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------ | ---- | -------------- |
| bundleName | string | 是 | 应用Bundle名称。 |
| userId | number | 是 | 被查询的用户id。 |
**返回值:**
| 类型 | 说明 |
| ----------------------------- | -------------------------------------------------- |
| Array
\<
[
LauncherAbilityInfo
](
js-apis-bundleManager-launcherAbilityInfo.md
)
> | Array形式返回bundle包含的
[
LauncherAbilityInfo
](
js-apis-bundleManager-launcherAbilityInfo.md
)
信息。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.bundle错误码
](
../errorcodes/errorcode-bundle.md
)
。
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 17700001 | The specified bundle name is not found. |
| 17700004 | The specified user ID is not found. |
**示例:**
```
typescript
import
launcherBundleManager
from
'
@ohos.bundle.launcherBundleManager
'
;
try
{
let
data
=
launcherBundleManager
.
getLauncherAbilityInfoSync
(
"
com.example.demo
"
,
100
);
console
.
log
(
"
data is
"
+
JSON
.
stringify
(
data
));
}
catch
(
errData
)
{
console
.
error
(
`errData is errCode:
${
errData
.
code
}
message:
${
errData
.
message
}
`
);
}
```
## launcherBundlemanager.getAllLauncherAbilityInfo<sup>9+</sup>
getAllLauncherAbilityInfo(userId: number, callback: AsyncCallback
<Array
\<[
LauncherAbilityInfo
](
js-apis-bundleManager-launcherAbilityInfo.md
)
>
>) : void;
...
...
@@ -305,3 +352,46 @@ try {
console
.
error
(
`errData is errCode:
${
errData
.
code
}
message:
${
errData
.
message
}
`
);
}
```
## launcherBundlemanager.getShortcutInfoSync<sup>10+</sup>
getShortcutInfoSync(bundleName : string) : Array
\<
[
ShortcutInfo
](
js-apis-bundleManager-shortcutInfo.md
)
>;
查询当前用户下指定应用的
[
ShortcutInfo
](
js-apis-bundleManager-shortcutInfo.md
)
。
**需要权限:**
ohos.permission.GET_BUNDLE_INFO_PRIVILEGED
**系统接口:**
此接口为系统接口
**系统能力:**
SystemCapability.BundleManager.BundleFramework.Launcher
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------ | ---- | -------------- |
| bundleName | string | 是 | 应用Bundle名称。 |
**返回值:**
| 类型 | 说明 |
| ---------------------- | ----------------------------------------------- |
| Array
\<
[
ShortcutInfo
](
js-apis-bundleManager-shortcutInfo.md
)
> | Array形式返回当前用户下指定应用的
[
ShortcutInfo
](
js-apis-bundleManager-shortcutInfo.md
)
。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.bundle错误码
](
../errorcodes/errorcode-bundle.md
)
。
| 错误码ID | 错误信息 |
| -------- | ---------------------------------------- |
| 17700001 | The specified bundle name is not found. |
**示例:**
```
ts
import
launcherBundleManager
from
'
@ohos.bundle.launcherBundleManager
'
;
try
{
let
data
=
launcherBundleManager
.
getShortcutInfoSync
(
"
com.example.demo
"
);
console
.
log
(
"
data is
"
+
JSON
.
stringify
(
data
));
}
catch
(
errData
)
{
console
.
error
(
`errData is errCode:
${
errData
.
code
}
message:
${
errData
.
message
}
`
);
}
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录