diff --git a/en/application-dev/dfx/errormanager-guidelines.md b/en/application-dev/dfx/errormanager-guidelines.md
index 835a6ab9ce3c0beacd19f7c76f5a1eec68bf36cd..631445b862097d5aa71320ff154d6e235660a95e 100644
--- a/en/application-dev/dfx/errormanager-guidelines.md
+++ b/en/application-dev/dfx/errormanager-guidelines.md
@@ -48,28 +48,28 @@ var callback = {
export default class MainAbility extends Ability {
onCreate(want, launchParam) {
console.log("[Demo] MainAbility onCreate")
+ registerId = errorManager.registerErrorObserver(callback);
globalThis.abilityWant = want;
}
onDestroy() {
console.log("[Demo] MainAbility onDestroy")
+ errorManager.unregisterErrorObserver(registerId, (result) => {
+ console.log("[Demo] result " + result.code + ";" + result.message)
+ });
}
onWindowStageCreate(windowStage) {
// Main window is created for this ability.
console.log("[Demo] MainAbility onWindowStageCreate")
- globalThis.registerObserver = (() => {
- registerId = errorManager.registerErrorObserver(callback);
- })
-
- globalThis.unRegisterObserver = (() => {
- errorManager.unregisterErrorObserver(registerId, (result) => {
- console.log("[Demo] result " + result.code + ";" + result.message)
- });
- })
-
- windowStage.setUIContent(this.context, "pages/index", null)
+ windowStage.loadContent("pages/index", (err, data) => {
+ if (err.code) {
+ console.error('Failed to load the content. Cause:' + JSON.stringify(err));
+ return;
+ }
+ console.info('Succeeded in loading the content. Data: ' + JSON.stringify(data))
+ });
}
onWindowStageDestroy() {
diff --git a/en/application-dev/quick-start/resource-categories-and-access.md b/en/application-dev/quick-start/resource-categories-and-access.md
index b79359a99ee1f7ecf434a7858a7ee1999b9af5d5..56e8209a5c19e353a21b80ff8b34dd51885db310 100644
--- a/en/application-dev/quick-start/resource-categories-and-access.md
+++ b/en/application-dev/quick-start/resource-categories-and-access.md
@@ -83,6 +83,7 @@ You can create resource group subdirectories (including element, media, and prof
| ------- | ---------------------------------------- | ---------------------------------------- |
| element | Indicates element resources. Each type of data is represented by a JSON file. The options are as follows:
- **boolean**: boolean data
- **color**: color data
- **float**: floating-point data
- **intarray**: array of integers
- **integer**: integer data
- **pattern**: pattern data
- **plural**: plural form data
- **strarray**: array of strings
- **string**: string data| It is recommended that files in the **element** subdirectory be named the same as the following files, each of which can contain only data of the same type:
- boolean.json
- color.json
- float.json
- intarray.json
- integer.json
- pattern.json
- plural.json
- strarray.json
- string.json |
| media | Indicates media resources, including non-text files such as images, audios, and videos. | The file name can be customized, for example, **icon.png**. |
+| profile | Indicates a user-defined configuration file. You can obtain the file content by using the [getProfileByAbility](../reference/apis/js-apis-bundleManager.md#bundlemanagergetprofilebyability) API. | The file name can be customized, for example, **test_profile.json**. |
| rawfile | Indicates other types of files, which are stored in their raw formats after the application is built as an HAP file. They will not be integrated into the **resources.index** file.| The file name can be customized. |
**Media Resource Types**
diff --git a/en/application-dev/reference/apis/js-apis-inputdevice.md b/en/application-dev/reference/apis/js-apis-inputdevice.md
index 9ed326b92bb458a475f47ee29aeee01f681cf5b4..29a9d739a1cd77bfd030beee38380dc870440444 100644
--- a/en/application-dev/reference/apis/js-apis-inputdevice.md
+++ b/en/application-dev/reference/apis/js-apis-inputdevice.md
@@ -33,7 +33,7 @@ Obtains the IDs of all input devices. This API uses an asynchronous callback to
```js
try {
- inputDevice.getDeviceList((error, ids) => {
+ inputDevice.getDeviceIds((error, ids) => {
if (error) {
console.log(`Failed to get device list.
error code=${JSON.stringify(err.code)} msg=${JSON.stringify(err.message)}`);
@@ -65,7 +65,7 @@ Obtains the IDs of all input devices. This API uses a promise to return the resu
```js
try {
- inputDevice.getDeviceList().then((ids) => {
+ inputDevice.getDeviceIds().then((ids) => {
console.log("The device ID list is: " + ids);
});
} catch (error) {
@@ -245,10 +245,15 @@ This API is deprecated since API version 9. You are advised to use [inputDevice.
**Example**
```js
-inputDevice.getDeviceIds((ids)=>{
- console.log("The device ID list is: " + ids);
+inputDevice.getDeviceIds((error, ids) => {
+ if (error) {
+ console.log(`Failed to get device id list, error: ${JSON.stringify(error, [`code`, `message`])}`);
+ return;
+ }
+ console.log(`Device id list: ${JSON.stringify(ids)}`);
});
```
+```
## inputDevice.getDeviceIds(deprecated)
@@ -269,8 +274,8 @@ This API is deprecated since API version 9. You are advised to use [inputDevice.
**Example**
```js
-inputDevice.getDeviceIds().then((ids)=>{
- console.log("The device ID list is: " + ids);
+inputDevice.getDeviceIds().then((ids) => {
+ console.log(`Device id list: ${JSON.stringify(ids)}`);
});
```
@@ -295,8 +300,12 @@ This API is deprecated since API version 9. You are advised to use [inputDevice.
```js
// Obtain the name of the device whose ID is 1.
-inputDevice.getDevice(1, (inputDevice)=>{
- console.log("The device name is: " + inputDevice.name);
+inputDevice.getDevice(1, (error, deviceData) => {
+ if (error) {
+ console.log(`Failed to get device info, error: ${JSON.stringify(error, [`code`, `message`])}`);
+ return;
+ }
+ console.log(`Device info: ${JSON.stringify(deviceData)}`);
});
```
@@ -326,8 +335,8 @@ This API is deprecated since API version 9. You are advised to use [inputDevice.
```js
// Obtain the name of the device whose ID is 1.
-inputDevice.getDevice(1).then((inputDevice)=>{
- console.log("The device name is: " + inputDevice.name);
+inputDevice.getDevice(1).then((deviceData) => {
+ console.log(`Device info: ${JSON.stringify(deviceData)}`);
});
```
diff --git a/en/release-notes/changelogs/OpenHarmony_3.2.8.3/changelogs-geolocation.md b/en/release-notes/changelogs/OpenHarmony_3.2.8.3/changelogs-geolocation.md
index 5597e65039b4f5ded8e3f6dd0b39681ec44f564e..2c593c302956fa32807147e0a549da967fc1b264 100644
--- a/en/release-notes/changelogs/OpenHarmony_3.2.8.3/changelogs-geolocation.md
+++ b/en/release-notes/changelogs/OpenHarmony_3.2.8.3/changelogs-geolocation.md
@@ -19,7 +19,7 @@ Other APIs are not affected.
**Key API/Component Changes**
-| Class| API Type| API Declaration| Change Type|
+| Class| Type| Declaration| Change Type|
| -- | -- | -- | -- |
|geolocation| namespace | declare namespacegeolocation| Migrated this API in API version 9 to **@ohos.geoLocationManager.d.ts**.|
|geolocation | interface | export interface ReverseGeocodingMockInfo | Migrated this API in API version 9 to **@ohos.geoLocationManager.d.ts**.|
@@ -52,8 +52,8 @@ Other APIs are not affected.
|geolocation| method | function setReverseGeocodingMockInfo(mockInfos: Array<ReverseGeocodingMockInfo>): Promise<void>; | Migrated this API in API version 9 to **@ohos.geoLocationManager.d.ts**. |
|geolocation| method | function isLocationPrivacyConfirmed(type: LocationPrivacyType, callback: AsyncCallback<boolean>): void; | Migrated this API in API version 9 to **@ohos.geoLocationManager.d.ts**. |
|geolocation| method | function isLocationPrivacyConfirmed(type: LocationPrivacyType): Promise<boolean>; | Migrated this API in API version 9 to **@ohos.geoLocationManager.d.ts**. |
-|geolocation| method | function setLocationPrivacyConfirmStatus(type: LocationPrivacyType, isConfirmed: boolean, callback: AsyncCallback<boolean>): void; | Migrated this API in API version 9 to **@ohos.geoLocationManager.d.ts** and changed the callback return value to **void**. |
-|geolocation| method | function setLocationPrivacyConfirmStatus(type: LocationPrivacyType, isConfirmed: boolean): Promise<boolean>; | Migrated this API in API version 9 to **@ohos.geoLocationManager.d.ts** and changed the promise return value to **void**. |
+|geolocation| method | function setLocationPrivacyConfirmStatus(type: LocationPrivacyType, isConfirmed: boolean, callback: AsyncCallback<boolean>): void; | Migrated this API in API version 9 to **@ohos.geoLocationManager.d.ts** and changed the return value in the callback to **void**. |
+|geolocation| method | function setLocationPrivacyConfirmStatus(type: LocationPrivacyType, isConfirmed: boolean): Promise<boolean>; | Migrated this API in API version 9 to **@ohos.geoLocationManager.d.ts** and changed the return value in the promise to **void**. |
**(Optional) Adaptation Guide**