Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
457431e1
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
457431e1
编写于
11月 21, 2022
作者:
葛
葛亚芳
提交者:
Gitee
11月 21, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update zh-cn/application-dev/reference/apis/js-apis-data-storage.md.
Signed-off-by:
N
葛亚芳
<
geyafang@huawei.com
>
上级
44b8d17b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
30 addition
and
30 deletion
+30
-30
zh-cn/application-dev/reference/apis/js-apis-data-storage.md
zh-cn/application-dev/reference/apis/js-apis-data-storage.md
+30
-30
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-data-storage.md
浏览文件 @
457431e1
...
...
@@ -22,7 +22,7 @@ import data_storage from '@ohos.data.storage';
**系统能力:**
以下各项对应的系统能力均为SystemCapability.DistributedDataManager.Preferences.Core
| 名称 |
参数
类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ---------------- | -------- | ---- | ---- | ------------------------------------- |
| MAX_KEY_LENGTH | number | 是 | 否 | key的最大长度限制,需小于80字节。 |
| MAX_VALUE_LENGTH | number | 是 | 否 | value的最大长度限制,需小于8192字节。 |
...
...
@@ -53,8 +53,8 @@ getStorageSync(path: string): Storage
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
var
path
;
var
context
=
featureAbility
.
getContext
();
let
path
;
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
filePath
)
=>
{
path
=
filePath
;
console
.
info
(
"
======================>getFilesDirPromise====================>
"
);
...
...
@@ -86,8 +86,8 @@ getStorage(path: string, callback: AsyncCallback<Storage>): void
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
var
path
;
var
context
=
featureAbility
.
getContext
();
let
path
;
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
filePath
)
=>
{
path
=
filePath
;
console
.
info
(
"
======================>getFilesDirPromise====================>
"
);
...
...
@@ -129,8 +129,8 @@ getStorage(path: string): Promise<Storage>
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
var
path
;
var
context
=
featureAbility
.
getContext
();
let
path
;
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
filePath
)
=>
{
path
=
filePath
;
console
.
info
(
"
======================>getFilesDirPromise====================>
"
);
...
...
@@ -165,8 +165,8 @@ deleteStorageSync(path: string): void
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
var
path
;
var
context
=
featureAbility
.
getContext
();
let
path
;
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
filePath
)
=>
{
path
=
filePath
;
console
.
info
(
"
======================>getFilesDirPromise====================>
"
);
...
...
@@ -195,8 +195,8 @@ deleteStorage(path: string, callback: AsyncCallback<void>): void
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
var
path
;
var
context
=
featureAbility
.
getContext
();
let
path
;
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
filePath
)
=>
{
path
=
filePath
;
console
.
info
(
"
======================>getFilesDirPromise====================>
"
);
...
...
@@ -237,8 +237,8 @@ deleteStorage(path: string): Promise<void>
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
var
path
;
var
context
=
featureAbility
.
getContext
();
let
path
;
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
filePath
)
=>
{
path
=
filePath
;
console
.
info
(
"
======================>getFilesDirPromise====================>
"
);
...
...
@@ -271,8 +271,8 @@ removeStorageFromCacheSync(path: string): void
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
var
path
;
var
context
=
featureAbility
.
getContext
();
let
path
;
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
filePath
)
=>
{
path
=
filePath
;
console
.
info
(
"
======================>getFilesDirPromise====================>
"
);
...
...
@@ -302,8 +302,8 @@ removeStorageFromCache(path: string, callback: AsyncCallback<void>): void
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
var
path
;
var
context
=
featureAbility
.
getContext
();
let
path
;
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
filePath
)
=>
{
path
=
filePath
;
console
.
info
(
"
======================>getFilesDirPromise====================>
"
);
...
...
@@ -344,8 +344,8 @@ removeStorageFromCache(path: string): Promise<void>
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
var
path
;
var
context
=
featureAbility
.
getContext
();
let
path
;
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
filePath
)
=>
{
path
=
filePath
;
console
.
info
(
"
======================>getFilesDirPromise====================>
"
);
...
...
@@ -864,15 +864,15 @@ on(type: 'change', callback: Callback<StorageObserver>): void
**参数:**
| 参数名 | 类型 | 说明 |
| -------- | --------------------------------------------------- | ---------------------------------------- |
| type | string | 事件类型,固定值'change',表示数据变更。 |
| callback | Callback
<
[StorageObserver](#storageobserver)
>
| 回调对象实例。 |
| 参数名 | 类型 |
必填|
说明 |
| -------- | --------------------------------------------------- | ------
|------
---------------------------------- |
| type | string |
是|
事件类型,固定值'change',表示数据变更。 |
| callback | Callback
<
[StorageObserver](#storageobserver)
>
|
是|
回调对象实例。 |
**示例:**
```
js
var
observer
=
function
(
key
)
{
let
observer
=
function
(
key
)
{
console
.
info
(
"
The key of
"
+
key
+
"
changed.
"
);
}
storage
.
on
(
'
change
'
,
observer
);
...
...
@@ -891,15 +891,15 @@ off(type: 'change', callback: Callback<StorageObserver>): void
**参数:**
| 参数名 | 类型 | 说明
|
| -------- | --------------------------------------------------- | ---------------------------------------- |
| type | string | 事件类型,固定值'change',表示数据变更。 |
| callback | Callback
<
[StorageObserver](#storageobserver)
>
| 需要取消的回调对象实例。 |
| 参数名 | 类型 | 说明
|必填
|
| -------- | --------------------------------------------------- | ------
|------
---------------------------------- |
| type | string |
是|
事件类型,固定值'change',表示数据变更。 |
| callback | Callback
<
[StorageObserver](#storageobserver)
>
|
是|
需要取消的回调对象实例。 |
**示例:**
```
js
var
observer
=
function
(
key
)
{
let
observer
=
function
(
key
)
{
console
.
info
(
"
The key of
"
+
key
+
"
changed.
"
);
}
storage
.
off
(
'
change
'
,
observer
);
...
...
@@ -910,7 +910,7 @@ storage.off('change', observer);
**系统能力:**
SystemCapability.DistributedDataManager.Preferences.Core
| 名称 |
参数
类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| ---- | -------- | ---- | ---------------- |
| key | string | 否 | 变更的数据内容。 |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录