Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
73c6e076
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看板
未验证
提交
73c6e076
编写于
10月 20, 2022
作者:
O
openharmony_ci
提交者:
Gitee
10月 20, 2022
浏览文件
操作
浏览文件
下载
差异文件
!10862 remove restrictions on the use of status variables on 3.2beta2.
Merge pull request !10862 from lihong/master
上级
b8b3e12f
a7804d5f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
36 addition
and
36 deletion
+36
-36
zh-cn/release-notes/api-change/v3.1-Release/changelog-v3.1-release.md
...e-notes/api-change/v3.1-Release/changelog-v3.1-release.md
+36
-1
zh-cn/release-notes/api-change/v3.2-beta2/changelog-v3.2-beta2.md
...lease-notes/api-change/v3.2-beta2/changelog-v3.2-beta2.md
+0
-35
未找到文件。
zh-cn/release-notes/api-change/v3.1-Release/changelog-v3.1-release.md
浏览文件 @
73c6e076
...
...
@@ -18,4 +18,39 @@
**关键的接口/组件变更**
无
\ No newline at end of file
无
### 状态变量多种数据类型声明使用限制。
状态变量比如@State、@Provide、 @Link和@Consume等,定义数据类型时,只能同时由简单数据类型或对象引用数据类型其中一种构成。
示例:
```
ts
@
Entry
@
Component
struct
Index
{
//错误写法: @State message: string | Resource = 'Hello World'
@
State
message
:
string
=
'
Hello World
'
build
()
{
Row
()
{
Column
()
{
Text
(
`
${
this
.
message
}
`
)
.
fontSize
(
50
)
.
fontWeight
(
FontWeight
.
Bold
)
}
.
width
(
'
100%
'
)
}
.
height
(
'
100%
'
)
}
}
```
**变更影响**
当定义的状态变量类型中同时包含简单类型和对象引用数据类型时,编译报错提示不支持。
**关键的接口/组件变更**
当定义的状态变量类型中同时包含简单类型和对象引用数据类型时,需修改为只含有其中一种,如上述示例代码所示。
\ No newline at end of file
zh-cn/release-notes/api-change/v3.2-beta2/changelog-v3.2-beta2.md
浏览文件 @
73c6e076
...
...
@@ -56,38 +56,3 @@ OpenHarmony应用沙箱组件
![](
figures/compile-change2-1.png
)
![](
figures/compile-change2-2.png
)
**变更3**
:状态变量多种数据类型声明使用限制。
状态变量比如@State、@Provide、 @Link和@Consume等,定义数据类型时,只能同时由简单数据类型或对象引用数据类型其中一种构成。
示例:
```
ts
@
Entry
@
Component
struct
Index
{
//错误写法: @State message: string | Resource = 'Hello World'
@
State
message
:
string
=
'
Hello World
'
build
()
{
Row
()
{
Column
()
{
Text
(
`
${
this
.
message
}
`
)
.
fontSize
(
50
)
.
fontWeight
(
FontWeight
.
Bold
)
}
.
width
(
'
100%
'
)
}
.
height
(
'
100%
'
)
}
}
```
**关键的接口/组件变更**
无
**适配指导**
当定义的状态变量类型中同时包含简单类型和对象引用数据类型时,需修改为只含有其中一种,如上述示例代码所示。
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录