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

!1775 Done! 1634:修正方法的格式

Merge pull request !1775 from wusongqing/TR1634
# FormExtension # FormExtension
> ![icon-note.gif](public_sys-resources/icon-note.gif) **Note:** > ![icon-note.gif](public_sys-resources/icon-note.gif) **NOTE**
> The initial APIs of this module are supported since API version 8. Newly added APIs will be marked with a superscript to indicate their earliest API version. > The initial APIs of this module are supported since API version 8. Newly added APIs will be marked with a superscript to indicate their earliest API version.
Provides **FormExtension** APIs. Provides **FormExtension** APIs.
...@@ -42,6 +42,7 @@ Called to notify the widget provider that a **Form** instance (widget) has been ...@@ -42,6 +42,7 @@ Called to notify the widget provider that a **Form** instance (widget) has been
- Example - Example
``` ```
export default class MyFormExtension extends FormExtension {
onCreate(want) { onCreate(want) {
console.log('FormExtension onCreate, want:' + want.abilityName); console.log('FormExtension onCreate, want:' + want.abilityName);
let dataObj1 = { let dataObj1 = {
...@@ -51,6 +52,7 @@ Called to notify the widget provider that a **Form** instance (widget) has been ...@@ -51,6 +52,7 @@ Called to notify the widget provider that a **Form** instance (widget) has been
let obj1 = formBindingData.createFormBindingData(dataObj1); let obj1 = formBindingData.createFormBindingData(dataObj1);
return obj1; return obj1;
} }
}
``` ```
## onCastToNormal ## onCastToNormal
...@@ -68,9 +70,11 @@ Called to notify the widget provider that a temporary widget has been converted ...@@ -68,9 +70,11 @@ Called to notify the widget provider that a temporary widget has been converted
- Example - Example
``` ```
export default class MyFormExtension extends FormExtension {
onCastToNormal(formId) { onCastToNormal(formId) {
console.log('FormExtension onCastToNormal, formId:' + formId); console.log('FormExtension onCastToNormal, formId:' + formId);
} }
}
``` ```
## onUpdate ## onUpdate
...@@ -88,6 +92,7 @@ Called to notify the widget provider that a widget has been updated. After obtai ...@@ -88,6 +92,7 @@ Called to notify the widget provider that a widget has been updated. After obtai
- Example - Example
``` ```
export default class MyFormExtension extends FormExtension {
onUpdate(formId) { onUpdate(formId) {
console.log('FormExtension onUpdate, formId:' + formId); console.log('FormExtension onUpdate, formId:' + formId);
let obj2 = formBindingData.createFormBindingData({temperature:"22c", time:"22:00"}); let obj2 = formBindingData.createFormBindingData({temperature:"22c", time:"22:00"});
...@@ -97,6 +102,7 @@ Called to notify the widget provider that a widget has been updated. After obtai ...@@ -97,6 +102,7 @@ Called to notify the widget provider that a widget has been updated. After obtai
}).catch((error) => { }).catch((error) => {
console.error('Operation updateForm failed. Cause: ' + error);}); console.error('Operation updateForm failed. Cause: ' + error);});
} }
}
``` ```
## onVisibilityChange ## onVisibilityChange
...@@ -114,6 +120,7 @@ Called to notify the widget provider of the change of visibility. ...@@ -114,6 +120,7 @@ Called to notify the widget provider of the change of visibility.
- Example - Example
``` ```
export default class MyFormExtension extends FormExtension {
onVisibilityChange(newStatus) { onVisibilityChange(newStatus) {
console.log('FormExtension onVisibilityChange, newStatus:' + newStatus); console.log('FormExtension onVisibilityChange, newStatus:' + newStatus);
let obj2 = formBindingData.createFormBindingData({temperature:"22c", time:"22:00"}); let obj2 = formBindingData.createFormBindingData({temperature:"22c", time:"22:00"});
...@@ -127,6 +134,7 @@ Called to notify the widget provider of the change of visibility. ...@@ -127,6 +134,7 @@ Called to notify the widget provider of the change of visibility.
console.error('Operation updateForm failed. Cause: ' + error);}); console.error('Operation updateForm failed. Cause: ' + error);});
} }
} }
}
``` ```
## onEvent ## onEvent
...@@ -145,9 +153,11 @@ Called to instruct the widget provider to receive and process the widget event. ...@@ -145,9 +153,11 @@ Called to instruct the widget provider to receive and process the widget event.
- Example - Example
``` ```
export default class MyFormExtension extends FormExtension {
onEvent(formId, message) { onEvent(formId, message) {
console.log('FormExtension onEvent, formId:' + formId + ", message:" + message); console.log('FormExtension onEvent, formId:' + formId + ", message:" + message);
} }
}
``` ```
## onDestroy ## onDestroy
...@@ -165,7 +175,9 @@ Called to notify the widget provider that a **Form** instance (widget) has been ...@@ -165,7 +175,9 @@ Called to notify the widget provider that a **Form** instance (widget) has been
- Example - Example
``` ```
export default class MyFormExtension extends FormExtension {
onDestroy(formId) { onDestroy(formId) {
console.log('FormExtension onDestroy, formId:' + formId); console.log('FormExtension onDestroy, formId:' + formId);
} }
}
``` ```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册