1、 ios系统出现跳转两次的问题,
解决: 新建project.alipay.json 中设置 { “enableAppxNg”: true, “enableNodeModuleBabelTransform”: true }
2、二级页面,页面凹陷进顶部,导航栏透明,解: 1、在app.config.js 的window中,添加 navigationBarForceEnable: true 属性
3、ios的系统返回键无法隐藏,不可自定义返回事件,不可拦截事件
4、自定义导航栏,点击事件需要增加点击穿透的属性:titlePenetrate: “YES” 和 隐藏默认导航栏属性: navigationStyle: “custom”,transparentTitle: “always”; (可在全局window设置,也可以在单独页面的配置文件里设置)
5、 返回刷新,可以在compontDidShow 函数中定义页面显示
6、刷新上一个或某个页面: const pages = Taro.getCurrentPages(); pages[pages.legnth -2] && pages[pages.legnth -2].onLoad()
7、 设置全局变量: Utils.js
const globalData = {}
export default {
set(key: string, val: any) { globalData[key] = val; },
get(key: string) {return globalData[key]; },
clear(key: string) { globalData[key] && delete globalData[key] }
}
8、在taro中可以单独配置各个小程序单独的配置项
9、支付宝小程序component升级到2.0以后,即设置enableAppxNg: true 之后, Taro.request将不能使用,只能使用 my.tb.request (只针对天猫APP)