赞
踩
需求:做项目中,当前页点击新增一个用户的功能,增加成功后返回原来的页面刷新数据。
涉及到页面跳转和监听。
使用taro在下一页,使用 返回上一页:
- // 返回列表页面
- Taro.navigateBack({
- delta: 1 // 返回上一级页面。
- });
- }
在上一页的componentDidShow中监听,执行刷新:
- componentDidShow () {
- const { searchInput, currentTag, tabList } = this.state;
- this.getVisitors(tabList[currentTag],searchInput);
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。