未验证 提交 8679465b 编写于 作者: O openharmony_ci 提交者: Gitee

!3508 修改新增接口资料错误

Merge pull request !3508 from Houdisheng/master
......@@ -213,7 +213,7 @@ import stats from '@ohos.bundleState';
import stats from '@ohos.bundleState'
// 异步方法promise方式
stats.getRecentlyUsedModules(this.maxNum).then( res => {
stats.getRecentlyUsedModules(1000).then( res => {
console.log('BUNDLE_ACTIVE getRecentlyUsedModules promise succeeded');
for (let i = 0; i < res.length; i++) {
console.log('BUNDLE_ACTIVE getRecentlyUsedModules promise number : ' + (i + 1));
......@@ -235,7 +235,7 @@ import stats from '@ohos.bundleState';
});
// 异步方法callback方式
stats.getRecentlyUsedModules(this.maxNum,(err, res) => {
stats.getRecentlyUsedModules(1000,(err, res) => {
if(err) {
console.log('BUNDLE_ACTIVE getRecentlyUsedModules callback failed, because: ' + err.code);
} else {
......
......@@ -423,7 +423,7 @@ getRecentlyUsedModules(maxNum: number): Promise&lt;Array&lt;BundleActiveModuleIn
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;Array&lt;[BundleActiveModuleInfo](#bundleactivestate)&gt;&gt; | 指定的Promise回调方法。返回不超过maxNum条FA使用记录。|
| Promise&lt;Array&lt;[BundleActiveModuleInfo](#bundleactivemoduleinfo9)&gt;&gt; | 指定的Promise回调方法。返回不超过maxNum条FA使用记录。|
**示例**
......@@ -465,7 +465,7 @@ getRecentlyUsedModules(maxNum: number, callback: AsyncCallback&lt;Array&lt;Bundl
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| maxNum | number | 否 | 返回条目的最大数量,最多支持1000条。若不填写,则默认为1000。|
| callback | AsyncCallback&lt;Array&lt;[BundleActiveModuleInfo](#bundleactivestate)&gt;&gt; | 是 | 指定的CallBack回调方法。返回不超过maxNum条FA使用记录。|
| callback | AsyncCallback&lt;Array&lt;[BundleActiveModuleInfo](#bundleactivemoduleinfo9)&gt;&gt; | 是 | 指定的CallBack回调方法。返回不超过maxNum条FA使用记录。|
**示例**
......@@ -503,19 +503,19 @@ FA的使用信息的属性集合。
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| deviceId | string | | FA所属deviceId。|
| deviceId | string | | FA所属deviceId。|
| bundleName | string | 是 | FA所属应用包名。|
| moduleName | string | 是 | FA所属module名。|
| abilityName | string | | FA的MainAbility名。|
| appLabelId | number | | FA的应用labelId。|
| labelId | number | | FA所属module的labelId。|
| descriptionId | number | | FA所属的应用descriptionId。|
| abilityLableId | number | | FA的MainAbility labelId。|
| abilityDescriptionId | number | | FA的MainAbility descriptionId。|
| abilityIconId | number | | FA的MainAbility iconId。|
| abilityName | string | | FA的MainAbility名。|
| appLabelId | number | | FA的应用labelId。|
| labelId | number | | FA所属module的labelId。|
| descriptionId | number | | FA所属的应用descriptionId。|
| abilityLableId | number | | FA的MainAbility labelId。|
| abilityDescriptionId | number | | FA的MainAbility descriptionId。|
| abilityIconId | number | | FA的MainAbility iconId。|
| launchedCount | number | 是 | FA的启动次数。|
| lastModuleUsedTime | number | 是 | FA的上一次使用时间。|
| formRecords | Array<BundleActiveFormInfo> | 是 | FA中卡片的使用记录。|
| formRecords | Array&lt;[BundleActiveFormInfo](#bundleactiveforminfo9)&gt; | 是 | FA中卡片的使用记录。|
## BundleActiveFormInfo<sup>9+</sup>
FA卡片的使用信息的属性集合。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册