Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
345e92ca
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看板
提交
345e92ca
编写于
12月 13, 2022
作者:
R
renjiecui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add change log
Signed-off-by:
N
renjiecui
<
cuirenjie@huawei.com
>
上级
e62f1e81
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
9 addition
and
4 deletion
+9
-4
zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/changelogs-distributeddatamgr.md
...ogs/OpenHarmony_3.2.10.1/changelogs-distributeddatamgr.md
+9
-4
未找到文件。
zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/changelogs-distributeddatamgr.md
浏览文件 @
345e92ca
...
@@ -3,6 +3,12 @@
...
@@ -3,6 +3,12 @@
OpenHarmony 3.2.10.1(Mr)版本相较于OpenHarmony 3.2.beta4版本,分布式数据管理子系统的API变更如下
OpenHarmony 3.2.10.1(Mr)版本相较于OpenHarmony 3.2.beta4版本,分布式数据管理子系统的API变更如下
## cl.distributeddatamgr.1 接口变更
## cl.distributeddatamgr.1 接口变更
distributeddatamgr子系统kv_store组件接口存在变更:
由于时间固定,createKVManager方法需要改为同步接口。因此旧的接口function createKVManager(config: KVManagerConfig): Promise
\<
KVManager
\>
; 与 function createKVManager(config: KVManagerConfig, callback: AsyncCallback
<KVManager>
): void; 改为 function createKVManager(config: KVManagerConfig): KVManager;
开发者需要根据以下说明对应用进行适配。
**变更影响**
**变更影响**
影响API9版本的JS接口,应用需要进行适配才可以在新版本SDK环境正常实现功能。
影响API9版本的JS接口,应用需要进行适配才可以在新版本SDK环境正常实现功能。
...
@@ -12,8 +18,7 @@ OpenHarmony 3.2.10.1(Mr)版本相较于OpenHarmony 3.2.beta4版本,分布式
...
@@ -12,8 +18,7 @@ OpenHarmony 3.2.10.1(Mr)版本相较于OpenHarmony 3.2.beta4版本,分布式
| 模块名 | 类名 | 方法/属性/枚举/常量 | 变更类型 |
| 模块名 | 类名 | 方法/属性/枚举/常量 | 变更类型 |
| ------------------------- | ------------------- | ------------------------------------------------------------ | -------- |
| ------------------------- | ------------------- | ------------------------------------------------------------ | -------- |
| @ohos.distributedKVStore | distributedKVStore | function createKVManager(config: KVManagerConfig): Promise
\<
KVManager
\>
; | 删除 |
| @ohos.distributedKVStore | distributedKVStore | function createKVManager(config: KVManagerConfig): Promise
\<
KVManager
\>
; | 删除 |
| @ohos.distributedKVStore | distributedKVStore | function createKVManager(config: KVManagerConfig, callback: AsyncCallback
\<
KVManager
\>
): void; | 更改前 |
| @ohos.distributedKVStore | distributedKVStore | function createKVManager(config: KVManagerConfig): KVManager; | 变更 |
| @ohos.distributedKVStore | distributedKVStore | function createKVManager(config: KVManagerConfig): KVManager; | 更改后 |
**适配指导**
**适配指导**
...
@@ -22,7 +27,7 @@ OpenHarmony 3.2.10.1(Mr)版本相较于OpenHarmony 3.2.beta4版本,分布式
...
@@ -22,7 +27,7 @@ OpenHarmony 3.2.10.1(Mr)版本相较于OpenHarmony 3.2.beta4版本,分布式
Stage模型下的示例:
Stage模型下的示例:
```
j
s
```
t
s
import
AbilityStage
from
'
@ohos.application.Ability
'
import
AbilityStage
from
'
@ohos.application.Ability
'
let
kvManager
;
let
kvManager
;
export
default
class
MyAbilityStage
extends
AbilityStage
{
export
default
class
MyAbilityStage
extends
AbilityStage
{
...
@@ -44,7 +49,7 @@ export default class MyAbilityStage extends AbilityStage {
...
@@ -44,7 +49,7 @@ export default class MyAbilityStage extends AbilityStage {
FA模型下的示例:
FA模型下的示例:
```
j
s
```
t
s
import
featureAbility
from
'
@ohos.ability.featureAbility
'
import
featureAbility
from
'
@ohos.ability.featureAbility
'
let
kvManager
;
let
kvManager
;
let
context
=
featureAbility
.
getContext
()
let
context
=
featureAbility
.
getContext
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录