@@ -95,7 +95,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.
```
```js
promise.then((storage)=>{
letgetPromise=storage.put('startup','auto')// Save data to the Storage instance.
getPromise.then(()=>{
...
...
@@ -112,7 +112,7 @@ Use the following APIs to delete a **Storage** instance or data file.
Use the **get()** method of the **Storage** class to read data.
```
```js
promise.then((storage)=>{
letgetPromise=storage.get('startup','default')
getPromise.then((value)=>{
...
...
@@ -128,7 +128,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.
```
```js
storage.flush();
```
...
...
@@ -136,7 +136,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.
```
```js
promise.then((storage)=>{
varobserver=function(key){
console.info("The key of "+key+" changed.")
...
...
@@ -155,7 +155,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.