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

!3554 开发指南添加语言标记:无需翻译

Merge pull request !3554 from 葛亚芳/OpenHarmony-3.1-Release
...@@ -29,7 +29,7 @@ The table below describes the APIs provided by the OpenHarmony DDS module. ...@@ -29,7 +29,7 @@ The table below describes the APIs provided by the OpenHarmony DDS module.
The following uses a single KV store as an example to describe the development procedure. The following uses a single KV store as an example to describe the development procedure.
1. Import the distributed data module. 1. Import the distributed data module.
``` ```js
import distributedData from '@ohos.data.distributedData'; import distributedData from '@ohos.data.distributedData';
``` ```
...@@ -38,7 +38,7 @@ The following uses a single KV store as an example to describe the development p ...@@ -38,7 +38,7 @@ The following uses a single KV store as an example to describe the development p
2. Create a **KvManager** instance. 2. Create a **KvManager** instance.
The sample code is as follows: The sample code is as follows:
``` ```js
let kvManager; let kvManager;
try { try {
const kvManagerConfig = { const kvManagerConfig = {
...@@ -66,7 +66,7 @@ The following uses a single KV store as an example to describe the development p ...@@ -66,7 +66,7 @@ The following uses a single KV store as an example to describe the development p
2. Create a single KV store. You are advised to disable automatic synchronization (**autoSync:false**) and call **sync** if a synchronization is required. 2. Create a single KV store. You are advised to disable automatic synchronization (**autoSync:false**) and call **sync** if a synchronization is required.
The sample code is as follows: The sample code is as follows:
``` ```js
let kvStore; let kvStore;
try { try {
const options = { const options = {
...@@ -95,7 +95,7 @@ The following uses a single KV store as an example to describe the development p ...@@ -95,7 +95,7 @@ The following uses a single KV store as an example to describe the development p
4. Subscribe to changes in the distributed data.<br/> 4. Subscribe to changes in the distributed data.<br/>
The following is the sample code for subscribing to the data changes of a single KV store: The following is the sample code for subscribing to the data changes of a single KV store:
``` ```js
kvStore.on('dataChange', distributedData.SubscribeType.SUBSCRIBE_TYPE_ALL, function (data) { kvStore.on('dataChange', distributedData.SubscribeType.SUBSCRIBE_TYPE_ALL, function (data) {
console.log("dataChange callback call data: " + JSON.stringify(data)); console.log("dataChange callback call data: " + JSON.stringify(data));
}); });
...@@ -107,7 +107,7 @@ The following uses a single KV store as an example to describe the development p ...@@ -107,7 +107,7 @@ The following uses a single KV store as an example to describe the development p
The following is the sample code for writing key-value pairs of the string type into the single KV store: The following is the sample code for writing key-value pairs of the string type into the single KV store:
``` ```js
const KEY_TEST_STRING_ELEMENT = 'key_test_string'; const KEY_TEST_STRING_ELEMENT = 'key_test_string';
const VALUE_TEST_STRING_ELEMENT = 'value-test-string'; const VALUE_TEST_STRING_ELEMENT = 'value-test-string';
try { try {
...@@ -128,7 +128,7 @@ The following uses a single KV store as an example to describe the development p ...@@ -128,7 +128,7 @@ The following uses a single KV store as an example to describe the development p
2. Query data from the single KV store. 2. Query data from the single KV store.
The following is the sample code for querying data of the string type from the single KV store: The following is the sample code for querying data of the string type from the single KV store:
``` ```js
const KEY_TEST_STRING_ELEMENT = 'key_test_string'; const KEY_TEST_STRING_ELEMENT = 'key_test_string';
const VALUE_TEST_STRING_ELEMENT = 'value-test-string'; const VALUE_TEST_STRING_ELEMENT = 'value-test-string';
try { try {
...@@ -151,7 +151,7 @@ The following uses a single KV store as an example to describe the development p ...@@ -151,7 +151,7 @@ The following uses a single KV store as an example to describe the development p
Select the devices in the same network and the synchronization mode to synchronize data. Select the devices in the same network and the synchronization mode to synchronize data.
The following is the sample code for data synchronization in a single KV store. **deviceIds** can be obtained by deviceManager by calling **getTrustedDeviceListSync()**, and **1000** indicates that the maximum delay time is 1000 ms. The following is the sample code for data synchronization in a single KV store. **deviceIds** can be obtained by deviceManager by calling **getTrustedDeviceListSync()**, and **1000** indicates that the maximum delay time is 1000 ms.
``` ```js
import deviceManager from '@ohos.distributedHardware.deviceManager'; import deviceManager from '@ohos.distributedHardware.deviceManager';
let devManager; let devManager;
......
...@@ -196,7 +196,7 @@ You can obtain the distributed table name for a remote device based on the local ...@@ -196,7 +196,7 @@ You can obtain the distributed table name for a remote device based on the local
The sample code is as follows: The sample code is as follows:
``` ```js
import data_rdb from '@ohos.data.rdb' import data_rdb from '@ohos.data.rdb'
const CREATE_TABLE_TEST = "CREATE TABLE IF NOT EXISTS test (" + "id INTEGER PRIMARY KEY AUTOINCREMENT, " + "name TEXT NOT NULL, " + "age INTEGER, " + "salary REAL, " + "blobType BLOB)"; const CREATE_TABLE_TEST = "CREATE TABLE IF NOT EXISTS test (" + "id INTEGER PRIMARY KEY AUTOINCREMENT, " + "name TEXT NOT NULL, " + "age INTEGER, " + "salary REAL, " + "blobType BLOB)";
...@@ -213,7 +213,7 @@ You can obtain the distributed table name for a remote device based on the local ...@@ -213,7 +213,7 @@ You can obtain the distributed table name for a remote device based on the local
The sample code is as follows: The sample code is as follows:
``` ```js
var u8 = new Uint8Array([1, 2, 3]) var u8 = new Uint8Array([1, 2, 3])
const valueBucket = {"name": "Tom", "age": 18, "salary": 100.5, "blobType": u8,} const valueBucket = {"name": "Tom", "age": 18, "salary": 100.5, "blobType": u8,}
let insertPromise = rdbStore.insert("test", valueBucket) let insertPromise = rdbStore.insert("test", valueBucket)
...@@ -226,7 +226,7 @@ You can obtain the distributed table name for a remote device based on the local ...@@ -226,7 +226,7 @@ You can obtain the distributed table name for a remote device based on the local
The sample code is as follows: The sample code is as follows:
``` ```js
let predicates = new data_rdb.RdbPredicates("test"); let predicates = new data_rdb.RdbPredicates("test");
predicates.equalTo("name", "Tom") predicates.equalTo("name", "Tom")
let promisequery = rdbStore.query(predicates) let promisequery = rdbStore.query(predicates)
...@@ -247,7 +247,7 @@ You can obtain the distributed table name for a remote device based on the local ...@@ -247,7 +247,7 @@ You can obtain the distributed table name for a remote device based on the local
The sample code is as follows: The sample code is as follows:
``` ```js
let promise = rdbStore.setDistributedTables(["test"]) let promise = rdbStore.setDistributedTables(["test"])
promise.then(() => { promise.then(() => {
console.info("setDistributedTables success.") console.info("setDistributedTables success.")
...@@ -263,7 +263,7 @@ You can obtain the distributed table name for a remote device based on the local ...@@ -263,7 +263,7 @@ You can obtain the distributed table name for a remote device based on the local
The sample code is as follows: The sample code is as follows:
``` ```js
let predicate = new data_rdb.RdbPredicates('test') let predicate = new data_rdb.RdbPredicates('test')
predicate.inDevices(['12345678abcde']) predicate.inDevices(['12345678abcde'])
let promise = rdbStore.sync(rdb.SyncMode.SYNC_MODE_PUSH, predicate) let promise = rdbStore.sync(rdb.SyncMode.SYNC_MODE_PUSH, predicate)
...@@ -283,7 +283,7 @@ You can obtain the distributed table name for a remote device based on the local ...@@ -283,7 +283,7 @@ You can obtain the distributed table name for a remote device based on the local
The sample code is as follows: The sample code is as follows:
``` ```js
function storeObserver(devices) { function storeObserver(devices) {
for (let i = 0; i < devices.length; i++) { for (let i = 0; i < devices.length; i++) {
console.log('device=' + device[i] + ' data changed') console.log('device=' + device[i] + ' data changed')
...@@ -302,7 +302,7 @@ You can obtain the distributed table name for a remote device based on the local ...@@ -302,7 +302,7 @@ You can obtain the distributed table name for a remote device based on the local
The sample code is as follows: The sample code is as follows:
``` ```js
let tableName = rdbStore.obtainDistributedTableName(deviceId, "test"); let tableName = rdbStore.obtainDistributedTableName(deviceId, "test");
let resultSet = rdbStore.querySql("SELECT * FROM " + tableName) let resultSet = rdbStore.querySql("SELECT * FROM " + tableName)
``` ```
...@@ -176,7 +176,7 @@ Use the following APIs to delete a **Storage** instance or data file. ...@@ -176,7 +176,7 @@ Use the following APIs to delete a **Storage** instance or data file.
1. Import **@ohos.data.storage** and related modules to the development environment. 1. Import **@ohos.data.storage** and related modules to the development environment.
``` ```js
import dataStorage from '@ohos.data.storage' import dataStorage from '@ohos.data.storage'
import featureAbility from '@ohos.ability.featureAbility' // Used to obtain the file storage path. import featureAbility from '@ohos.ability.featureAbility' // Used to obtain the file storage path.
``` ```
...@@ -185,7 +185,7 @@ Use the following APIs to delete a **Storage** instance or data file. ...@@ -185,7 +185,7 @@ Use the following APIs to delete a **Storage** instance or data file.
Read the specified file and load its data to the **Storage** instance for data operations. Read the specified file and load its data to the **Storage** instance for data operations.
``` ```js
var context = featureAbility.getContext() var context = featureAbility.getContext()
var path = await context.getFilesDir() var path = await context.getFilesDir()
let promise = dataStorage.getStorage(path + '/mystore') let promise = dataStorage.getStorage(path + '/mystore')
...@@ -196,7 +196,7 @@ Use the following APIs to delete a **Storage** instance or data file. ...@@ -196,7 +196,7 @@ Use the following APIs to delete a **Storage** instance or data file.
Use the **put\(\)** method of the **Storage** class to write data to the cached **Storage** instance. Use the **put\(\)** method of the **Storage** class to write data to the cached **Storage** instance.
``` ```js
promise.then((storage) => { promise.then((storage) => {
let getPromise = storage.put('startup', 'auto') // Save data to the Storage instance. let getPromise = storage.put('startup', 'auto') // Save data to the Storage instance.
getPromise.then(() => { getPromise.then(() => {
...@@ -214,7 +214,7 @@ Use the following APIs to delete a **Storage** instance or data file. ...@@ -214,7 +214,7 @@ Use the following APIs to delete a **Storage** instance or data file.
Use the **get\(\)** method of the **Storage** class to read data. Use the **get\(\)** method of the **Storage** class to read data.
``` ```js
promise.then((storage) => { promise.then((storage) => {
let getPromise = storage.get('startup', 'default') let getPromise = storage.get('startup', 'default')
getPromise.then((value) => { getPromise.then((value) => {
...@@ -232,7 +232,7 @@ Use the following APIs to delete a **Storage** instance or data file. ...@@ -232,7 +232,7 @@ Use the following APIs to delete a **Storage** instance or data file.
Use the **flush** or **flushSync** method to flush data in the **Storage** instance to its file. Use the **flush** or **flushSync** method to flush data in the **Storage** instance to its file.
``` ```js
storage.flush(); storage.flush();
``` ```
...@@ -240,7 +240,7 @@ Use the following APIs to delete a **Storage** instance or data file. ...@@ -240,7 +240,7 @@ Use the following APIs to delete a **Storage** instance or data file.
Specify **StorageObserver** as the callback to subscribe to data changes for an application. When the value of the subscribed key is changed and the **flush\(\)** method is executed, **StorageObserver** will be invoked. Unregister the **StorageObserver** when it is no longer required. Specify **StorageObserver** as the callback to subscribe to data changes for an application. When the value of the subscribed key is changed and the **flush\(\)** method is executed, **StorageObserver** will be invoked. Unregister the **StorageObserver** when it is no longer required.
``` ```js
promise.then((storage) => { promise.then((storage) => {
var observer = function (key) { var observer = function (key) {
console.info("The key of " + key + " changed.") console.info("The key of " + key + " changed.")
...@@ -260,7 +260,7 @@ Use the following APIs to delete a **Storage** instance or data file. ...@@ -260,7 +260,7 @@ Use the following APIs to delete a **Storage** instance or data file.
Use the **deleteStorage** method to delete the **Storage** singleton of the specified file from the memory, and delete the specified file, its backup file, and damaged files. After the specified files are deleted, the application cannot use that instance to perform any data operation. Otherwise, data inconsistency will occur. The deleted data and files cannot be restored. Use the **deleteStorage** method to delete the **Storage** singleton of the specified file from the memory, and delete the specified file, its backup file, and damaged files. After the specified files are deleted, the application cannot use that instance to perform any data operation. Otherwise, data inconsistency will occur. The deleted data and files cannot be restored.
``` ```js
let promise = dataStorage.deleteStorage(path + '/mystore') let promise = dataStorage.deleteStorage(path + '/mystore')
promise.then(() => { promise.then(() => {
console.info("Deleted successfully.") console.info("Deleted successfully.")
......
...@@ -105,7 +105,7 @@ You can implement page redirection through the [page router](../ui/ui-js-buildin ...@@ -105,7 +105,7 @@ You can implement page redirection through the [page router](../ui/ui-js-buildin
In the files of the first page, bind the **onclick** method to the button so that clicking the button redirects the user to the second page. This operation needs to be completed in both .js and .visual files. In the files of the first page, bind the **onclick** method to the button so that clicking the button redirects the user to the second page. This operation needs to be completed in both .js and .visual files.
- In the **index.js** file: - In the **index.js** file:
``` ```js
import router from '@ohos.router'; import router from '@ohos.router';
export default { export default {
...@@ -128,7 +128,7 @@ You can implement page redirection through the [page router](../ui/ui-js-buildin ...@@ -128,7 +128,7 @@ You can implement page redirection through the [page router](../ui/ui-js-buildin
- In the **second.js** file: - In the **second.js** file:
``` ```js
import router from '@ohos.router'; import router from '@ohos.router';
export default { export default {
......
...@@ -29,7 +29,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种 ...@@ -29,7 +29,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种
以单版本分布式数据库为例,说明开发步骤。 以单版本分布式数据库为例,说明开发步骤。
1. 导入模块。 1. 导入模块。
``` ```js
import distributedData from '@ohos.data.distributedData'; import distributedData from '@ohos.data.distributedData';
``` ```
...@@ -38,7 +38,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种 ...@@ -38,7 +38,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种
2. 创建分布式数据库管理器实例。 2. 创建分布式数据库管理器实例。
以下为创建分布式数据库管理器的代码示例: 以下为创建分布式数据库管理器的代码示例:
``` ```js
let kvManager; let kvManager;
try { try {
const kvManagerConfig = { const kvManagerConfig = {
...@@ -66,7 +66,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种 ...@@ -66,7 +66,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种
2. 创建分布式数据库,建议关闭自动同步功能(autoSync:false),需要同步时主动调用sync接口。 2. 创建分布式数据库,建议关闭自动同步功能(autoSync:false),需要同步时主动调用sync接口。
以下为创建分布式数据库的代码示例: 以下为创建分布式数据库的代码示例:
``` ```js
let kvStore; let kvStore;
try { try {
const options = { const options = {
...@@ -95,7 +95,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种 ...@@ -95,7 +95,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种
4. 订阅分布式数据变化。 4. 订阅分布式数据变化。
以下为订阅单版本分布式数据库数据变化通知的代码示例: 以下为订阅单版本分布式数据库数据变化通知的代码示例:
``` ```js
kvStore.on('dataChange', distributedData.SubscribeType.SUBSCRIBE_TYPE_ALL, function (data) { kvStore.on('dataChange', distributedData.SubscribeType.SUBSCRIBE_TYPE_ALL, function (data) {
console.log("dataChange callback call data: " + JSON.stringify(data)); console.log("dataChange callback call data: " + JSON.stringify(data));
}); });
...@@ -107,7 +107,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种 ...@@ -107,7 +107,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种
以下为将字符串类型键值数据写入分布式数据库的代码示例: 以下为将字符串类型键值数据写入分布式数据库的代码示例:
``` ```js
const KEY_TEST_STRING_ELEMENT = 'key_test_string'; const KEY_TEST_STRING_ELEMENT = 'key_test_string';
const VALUE_TEST_STRING_ELEMENT = 'value-test-string'; const VALUE_TEST_STRING_ELEMENT = 'value-test-string';
try { try {
...@@ -128,7 +128,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种 ...@@ -128,7 +128,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种
2. 从单版本分布式数据库中获取数据。 2. 从单版本分布式数据库中获取数据。
以下为从分布式数据库中查询字符串类型数据的代码示例: 以下为从分布式数据库中查询字符串类型数据的代码示例:
``` ```js
const KEY_TEST_STRING_ELEMENT = 'key_test_string'; const KEY_TEST_STRING_ELEMENT = 'key_test_string';
const VALUE_TEST_STRING_ELEMENT = 'value-test-string'; const VALUE_TEST_STRING_ELEMENT = 'value-test-string';
try { try {
...@@ -151,7 +151,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种 ...@@ -151,7 +151,7 @@ OpenHarmony系统中的分布式数据服务模块为开发者提供下面几种
1.选择同一组网环境下的设备以及同步模式,进行数据同步。 1.选择同一组网环境下的设备以及同步模式,进行数据同步。
以下为单版本分布式数据库进行数据同步的代码示例,其中deviceIds可由deviceManager调用getTrustedDeviceListSync()方法得到,1000表示最大延迟时间为1000ms: 以下为单版本分布式数据库进行数据同步的代码示例,其中deviceIds可由deviceManager调用getTrustedDeviceListSync()方法得到,1000表示最大延迟时间为1000ms:
``` ```js
import deviceManager from '@ohos.distributedHardware.deviceManager'; import deviceManager from '@ohos.distributedHardware.deviceManager';
let devManager; let devManager;
......
...@@ -196,7 +196,7 @@ ...@@ -196,7 +196,7 @@
示例代码如下: 示例代码如下:
``` ```js
import data_rdb from '@ohos.data.rdb' import data_rdb from '@ohos.data.rdb'
const CREATE_TABLE_TEST = "CREATE TABLE IF NOT EXISTS test (" + "id INTEGER PRIMARY KEY AUTOINCREMENT, " + "name TEXT NOT NULL, " + "age INTEGER, " + "salary REAL, " + "blobType BLOB)"; const CREATE_TABLE_TEST = "CREATE TABLE IF NOT EXISTS test (" + "id INTEGER PRIMARY KEY AUTOINCREMENT, " + "name TEXT NOT NULL, " + "age INTEGER, " + "salary REAL, " + "blobType BLOB)";
...@@ -213,7 +213,7 @@ ...@@ -213,7 +213,7 @@
示例代码如下: 示例代码如下:
``` ```js
var u8 = new Uint8Array([1, 2, 3]) var u8 = new Uint8Array([1, 2, 3])
const valueBucket = {"name": "Tom", "age": 18, "salary": 100.5, "blobType": u8,} const valueBucket = {"name": "Tom", "age": 18, "salary": 100.5, "blobType": u8,}
let insertPromise = rdbStore.insert("test", valueBucket) let insertPromise = rdbStore.insert("test", valueBucket)
...@@ -226,7 +226,7 @@ ...@@ -226,7 +226,7 @@
示例代码如下: 示例代码如下:
``` ```js
let predicates = new data_rdb.RdbPredicates("test"); let predicates = new data_rdb.RdbPredicates("test");
predicates.equalTo("name", "Tom") predicates.equalTo("name", "Tom")
let promisequery = rdbStore.query(predicates) let promisequery = rdbStore.query(predicates)
...@@ -247,7 +247,7 @@ ...@@ -247,7 +247,7 @@
示例代码如下: 示例代码如下:
``` ```js
let promise = rdbStore.setDistributedTables(["test"]) let promise = rdbStore.setDistributedTables(["test"])
promise.then(() => { promise.then(() => {
console.info("setDistributedTables success.") console.info("setDistributedTables success.")
...@@ -263,7 +263,7 @@ ...@@ -263,7 +263,7 @@
示例代码如下: 示例代码如下:
``` ```js
let predicate = new data_rdb.RdbPredicates('test') let predicate = new data_rdb.RdbPredicates('test')
predicate.inDevices(['12345678abcde']) predicate.inDevices(['12345678abcde'])
let promise = rdbStore.sync(rdb.SyncMode.SYNC_MODE_PUSH, predicate) let promise = rdbStore.sync(rdb.SyncMode.SYNC_MODE_PUSH, predicate)
...@@ -283,7 +283,7 @@ ...@@ -283,7 +283,7 @@
示例代码如下: 示例代码如下:
``` ```js
function storeObserver(devices) { function storeObserver(devices) {
for (let i = 0; i < devices.length; i++) { for (let i = 0; i < devices.length; i++) {
console.log('device=' + device[i] + ' data changed') console.log('device=' + device[i] + ' data changed')
...@@ -302,7 +302,7 @@ ...@@ -302,7 +302,7 @@
示例代码如下: 示例代码如下:
``` ```js
let tableName = rdbStore.obtainDistributedTableName(deviceId, "test"); let tableName = rdbStore.obtainDistributedTableName(deviceId, "test");
let resultSet = rdbStore.querySql("SELECT * FROM " + tableName) let resultSet = rdbStore.querySql("SELECT * FROM " + tableName)
``` ```
......
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
1. 准备工作,导入@ohos.data.storage以及相关的模块到开发环境。 1. 准备工作,导入@ohos.data.storage以及相关的模块到开发环境。
``` ```js
import dataStorage from '@ohos.data.storage' import dataStorage from '@ohos.data.storage'
import featureAbility from '@ohos.ability.featureAbility' // 用于获取文件存储路径 import featureAbility from '@ohos.ability.featureAbility' // 用于获取文件存储路径
``` ```
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
2. 获取Storage实例。 2. 获取Storage实例。
读取指定文件,将数据加载到Storage实例,用于数据操作。 读取指定文件,将数据加载到Storage实例,用于数据操作。
``` ```js
var context = featureAbility.getContext() var context = featureAbility.getContext()
context.getFilesDir().then(() => { context.getFilesDir().then(() => {
console.info("======================>getFilesDirPromsie====================>"); console.info("======================>getFilesDirPromsie====================>");
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
使用Storage put方法保存数据到缓存的实例中。 使用Storage put方法保存数据到缓存的实例中。
``` ```js
promise.then((storage) => { promise.then((storage) => {
let getPromise = storage.put('startup', 'auto') // 保存数据到缓存的storage示例中。 let getPromise = storage.put('startup', 'auto') // 保存数据到缓存的storage示例中。
getPromise.then(() => { getPromise.then(() => {
...@@ -112,7 +112,7 @@ ...@@ -112,7 +112,7 @@
使用Storage get方法读取数据。 使用Storage get方法读取数据。
``` ```js
promise.then((storage) => { promise.then((storage) => {
let getPromise = storage.get('startup', 'default') let getPromise = storage.get('startup', 'default')
getPromise.then((value) => { getPromise.then((value) => {
...@@ -128,7 +128,7 @@ ...@@ -128,7 +128,7 @@
应用存入数据到Storage实例后,可以通过flush或者flushSync方法将Storage实例回写到文件中。 应用存入数据到Storage实例后,可以通过flush或者flushSync方法将Storage实例回写到文件中。
``` ```js
storage.flush(); storage.flush();
``` ```
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
应用订阅数据变化需要指定StorageObserver作为回调方法。订阅的key的值发生变更后,当执行flush方法时,StorageObserver被触发回调。不再需要StorageObserver时请注销。 应用订阅数据变化需要指定StorageObserver作为回调方法。订阅的key的值发生变更后,当执行flush方法时,StorageObserver被触发回调。不再需要StorageObserver时请注销。
``` ```js
promise.then((storage) => { promise.then((storage) => {
var observer = function (key) { var observer = function (key) {
console.info("The key of " + key + " changed.") console.info("The key of " + key + " changed.")
...@@ -155,7 +155,7 @@ ...@@ -155,7 +155,7 @@
使用deleteStorage方法从内存中移除指定文件对应的Storage单实例,并删除指定文件及其备份文件、损坏文件。删除指定文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题。删除后,数据及文件将不可恢复。 使用deleteStorage方法从内存中移除指定文件对应的Storage单实例,并删除指定文件及其备份文件、损坏文件。删除指定文件时,应用不允许再使用该实例进行数据操作,否则会出现数据一致性问题。删除后,数据及文件将不可恢复。
``` ```js
let promise = dataStorage.deleteStorage(path + '/mystore') let promise = dataStorage.deleteStorage(path + '/mystore')
promise.then(() => { promise.then(() => {
console.info("Deleted successfully.") console.info("Deleted successfully.")
......
...@@ -109,7 +109,7 @@ OpenHarmony低代码开发方式具有丰富的UI界面编辑功能,通过可 ...@@ -109,7 +109,7 @@ OpenHarmony低代码开发方式具有丰富的UI界面编辑功能,通过可
在第一个页面中,跳转按钮绑定onclick方法,点击按钮时跳转到第二页。需同时处理js文件及visual文件。 在第一个页面中,跳转按钮绑定onclick方法,点击按钮时跳转到第二页。需同时处理js文件及visual文件。
-**index.js**”示例如下: -**index.js**”示例如下:
``` ```js
import router from '@ohos.router'; import router from '@ohos.router';
export default { export default {
...@@ -132,7 +132,7 @@ OpenHarmony低代码开发方式具有丰富的UI界面编辑功能,通过可 ...@@ -132,7 +132,7 @@ OpenHarmony低代码开发方式具有丰富的UI界面编辑功能,通过可
-**second.js**”示例如下: -**second.js**”示例如下:
``` ```js
import router from '@ohos.router'; import router from '@ohos.router';
export default { export default {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册