diff --git a/en/application-dev/reference/apis/js-apis-reminderAgent.md b/en/application-dev/reference/apis/js-apis-reminderAgent.md index 31db6beefe6b60ba7e241411f3672c2d908cbe58..d6ffafdf295bc5390f9e7fa2916fc991f72b06d1 100644 --- a/en/application-dev/reference/apis/js-apis-reminderAgent.md +++ b/en/application-dev/reference/apis/js-apis-reminderAgent.md @@ -269,15 +269,14 @@ Adds a reminder notification slot. This API uses an asynchronous callback to ret | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | -| slot | [NotificationSlot](js-apis-notification.md#notificationslot) | Yes| Reminder notification slot to add.| +| slot | [NotificationSlot](js-apis-notification.md#notificationslot) | Yes| Notification slot to add, only support set its type attribute.| | callback | AsyncCallback<void> | Yes| Asynchronous callback used to return the result.| **Example** ```js let mySlot = { - type: 3, - sound: "/sdcard/music2.mp3" + type: notification.SlotType.SOCIAL_COMMUNICATION } reminderAgent.addNotificationSlot(mySlot, (err, data) => { console.log("addNotificationSlot callback"); @@ -297,7 +296,7 @@ Adds a reminder notification slot. This API uses a promise to return the result. | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | -| slot | [NotificationSlot](js-apis-notification.md#notificationslot) | Yes| Reminder notification slot to add.| +| slot | [NotificationSlot](js-apis-notification.md#notificationslot) | Yes| notification slot to add, only support set its type attribute.| **Return value** @@ -309,8 +308,7 @@ Adds a reminder notification slot. This API uses a promise to return the result. ```js let mySlot = { - type: 3, - sound: "/sdcard/music2.mp3" + type: notification.SlotType.SOCIAL_COMMUNICATION } reminderAgent.addNotificationSlot(mySlot).then(() => { console.log("addNotificationSlot promise"); diff --git a/zh-cn/application-dev/reference/apis/js-apis-reminderAgent.md b/zh-cn/application-dev/reference/apis/js-apis-reminderAgent.md index 7d9118b148974a05ea06271faaad512588aedddc..ef955e7827297f19699faf7fb2738cb1d753410b 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-reminderAgent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-reminderAgent.md @@ -269,15 +269,17 @@ addNotificationSlot(slot: NotificationSlot, callback: AsyncCallback<void>) | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | -| slot | [NotificationSlot](js-apis-notification.md#notificationslot) | 是 | notification slot实例。 | +| slot | [NotificationSlot](js-apis-notification.md#notificationslot) | 是 | notification slot实例,仅支持设置其type属性。 | | callback | AsyncCallback<void> | 是 | 异步回调。 | +**说明**: +使用NotificationSlot需要导入: import notification from '@ohos.notification' + **示例**: ```js let mySlot = { - type: 3, - sound: "/sdcard/music2.mp3" + type: notification.SlotType.SOCIAL_COMMUNICATION } reminderAgent.addNotificationSlot(mySlot, (err, data) => { console.log("addNotificationSlot callback"); @@ -297,7 +299,10 @@ addNotificationSlot(slot: NotificationSlot): Promise<void> | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | -| slot | [NotificationSlot](js-apis-notification.md#notificationslot) | 是 | notification slot实例。 | +| slot | [NotificationSlot](js-apis-notification.md#notificationslot) | 是 | notification slot实例,仅支持设置其type属性。 | + +**说明**: +使用NotificationSlot需要导入: import notification from '@ohos.notification' **返回值**: @@ -309,8 +314,7 @@ addNotificationSlot(slot: NotificationSlot): Promise<void> ```js let mySlot = { - type: 3, - sound: "/sdcard/music2.mp3" + type: notification.SlotType.SOCIAL_COMMUNICATION } reminderAgent.addNotificationSlot(mySlot).then(() => { console.log("addNotificationSlot promise");