Fliegend的乱七八糟空间

新手入门,Hello World!

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2021年4月22日

摘要: 在日常使用store获取远程数据时,经常遇到需要远程接口返回的数据并不是直接就是前端需要的,或者希望在返回store数据的同时,返回其他相关数据,此时可以在store获取返回值时直接在store内部针对数据进行一次处理。 在配置reader时支持transform可传递一个方法,方法返回值为实际写入 阅读全文
posted @ 2021-04-22 10:39 Fliegend 阅读(300) 评论(0) 推荐(0)

摘要: 1.当前对象的父对象(上级对象) this.ownerCt: 2.当前对象的下一个相邻的对象 this.nextSibling(); 3.当前对象的上一个相邻的对象 this.previousSibling(); 4.当前容器中的第一个子对象 this.get(0); this.items.firs 阅读全文
posted @ 2021-04-22 10:27 Fliegend 阅读(176) 评论(0) 推荐(0)