1# ShortcutInfo 2 3 4 5> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** 6> 本模块首批接口从API version 7 开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 7 8 9 10应用配置文件中定义的快捷方式信息,FA模型配置在[config.json](../../quick-start/application-configuration-file-overview-fa.md)文件中进行配置,Stage模型在开发视图的resources/base/profile下面定义配置文件即可。 11 12 13 14## ShortcutWant<sup>(deprecated)<sup> 15 16> 从API version 9开始不再维护,建议使用[bundleManager-ShortcutWant](js-apis-bundleManager-shortcutInfo.md)替代 17 18 **系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework 19 20 **系统API:** 此接口为系统接口,三方应用不支持调用 21 22| 名称 | 类型 | 可读 | 可写 | 说明 | 23| ------------------------- | ------ | ---- | ---- | -------------------- | 24| targetBundle | string | 是 | 否 | 快捷方式的目标捆绑包 | 25| targetClass | string | 是 | 否 | 快捷方式所需的目标类 | 26 27## ShortcutInfo<sup>(deprecated)<sup> 28 29> 从API version 9开始不再维护,建议使用[bundleManager-ShortcutInfo](js-apis-bundleManager-shortcutInfo.md)替代。 30 31 32 **系统能力:** 以下各项对应的系统能力均为SystemCapability.BundleManager.BundleFramework 33 34| 名称 | 类型 | 可读 | 可写 | 说明 | 35| ----------------------- | ------------------------------------------ | ---- | ---- | ---------------------------- | 36| id | string | 是 | 否 | 快捷方式所属应用程序的Id。 | 37| bundleName | string | 是 | 否 | 包含该快捷方式的包名称。 | 38| hostAbility | string | 是 | 否 | 快捷方式的本地Ability信息。 | 39| icon | string | 是 | 否 | 快捷方式的图标。 | 40| iconId<sup>8+</sup> | number | 是 | 否 | 快捷方式的图标Id。 | 41| label | string | 是 | 否 | 快捷方式的名称。 | 42| labelId<sup>8+</sup> | number | 是 | 否 | 快捷方式的名称Id。 | 43| disableMessage | string | 是 | 否 | 快捷方式的禁用消息。 | 44| wants | Array<[ShortcutWant](#shortcutwant)> | 是 | 否 | 快捷方式意图列表。 | 45| isStatic | boolean | 是 | 否 | 快捷方式是否为静态。 | 46| isHomeShortcut | boolean | 是 | 否 | 快捷方式是否为主页面快捷方式。 | 47| isEnabled | boolean | 是 | 否 | 是否启用快捷方式。 |