企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
~~~ //page data: { topMore:0, bottomMore:0 }, onPullDownRefresh: function () { this.setData({ topMore:Math.random() }) }, onReachBottom(){ this.setData({ bottomMore:Math.random() }) } ~~~ ~~~ //子组件 properties: { topMore:{ type:Number, observer:"onPull", }, bottomMore:{ type:Number, observer:"onBottom" } }, //子更新则会触发observer函数 methods: { onPull(){ console.log(1); }, onBottom(){ console.log(2); } } ~~~