//生命周期 componentWillMount //在微信小程序中對應onLaunch componentDidMount //在微信小程序中,這一生命周期方法對應頁面的onReady或者入口文件app中的onLaunch,在componentWillMount后執行 componentDidShow //在微信小程序中這一生命周期方法對應 onShow componentDidHide //在微信小程序中這一生命周期方法對應 onHide componentDidCatchError //錯誤監聽函數,在微信小程序中這一生命周期方法對應 onError componentDidNotFound //頁面不存在監聽函數,在微信小程序中這一生命周期方法對應 onPageNotFound shouldComponentUpdate //頁面是否需要更新 componentWillUpdate //頁面即將更新 componentDidUpdate //頁面更新完畢 componentWillUnmount //頁面退出,在微信小程序中這一生命周期方法對應 onUnload