赞
踩
本示例介绍使用@Observed装饰器和@ObjectLink装饰器来实现多层嵌套类对象属性变化的监听。
使用说明
/** * 表示商品详细数据的类型,是嵌套类的第三层 * @class */ @Observed export class ThirdGoodsItem { imgSrc: Resource; // 商品图片 price: string; // 商品价格 constructor(imgSrc: Resource, price: string) { this.imgSrc = imgSrc; this.price = price; } } /** * 表示商品列表的类型,是嵌套类的第二层 * @class */ @Observed export class SecondGoodsItemList { itemList: Array<ThirdGoodsItem>; constructor(imgSrc: Array<ThirdGoodsItem>) { this.itemList = imgSrc; } } /** * 表示商品模型的类型,是嵌套类的首层 * @class */ export class FistGoodsModel { itemList: SecondGoodsItemList; constructor(itemList: SecondGoodsItemList) { this.itemList = itemList; } }
@Component export default struct GoodViewStruct { @Link model: FistGoodsModel; build() { Column() { SecondViews() } } } @Component struct SecondViews { @ObjectLink data: SecondGoodsItemList build() { List() { ... } } } @Component struct ThirdView { @ObjectLink item: ThirdGoodsItem build() { Column() { ... } } }
this.itemList.forEach((item, index) => {
item.imgSrc = originItemList[index].imgSrc;
item.price = originItemList[index].price;
}
本示例介绍使用@Observed装饰器和@ObjectLink装饰器来解决需要单独监听多层嵌套类对象属性的方案。
VariableWatchView // har类型
|---model
| |---GoodsModel.ets // 数据模型
|---view
| |---ProductView.ets // 视图层-场景列表页面
| |---VariableWatchView.ets // 视图层-场景主页面
不涉及
@Observed装饰器和@ObjectLink装饰器:嵌套类对象属性变化
为了能让大家更好的学习鸿蒙(HarmonyOS NEXT)开发技术,这边特意整理了《鸿蒙开发学习手册》(共计890页),希望对大家有所帮助:https://qr21.cn/FV7h05
https://qr21.cn/FV7h05
如何快速入门:https://qr21.cn/FV7h05
开发基础知识:https://qr21.cn/FV7h05
基于ArkTS 开发:https://qr21.cn/FV7h05
https://qr21.cn/FV7h05
https://qr21.cn/FV7h05
1.项目开发必备面试题
2.性能优化方向
3.架构方向
4.鸿蒙开发系统底层方向
5.鸿蒙音视频开发方向
6.鸿蒙车载开发方向
7.鸿蒙南向开发方向
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。