const account = wx.getAccountInfoSync() console.log(account) 报错
来源:2-5 微信小程序原生 API 调用方法
慕田峪7447751
2019-08-19
您好,劳烦帮看下什么情况。感谢
写回答
2回答
-
慕田峪7447751
提问者
2019-08-19
App({ /** * 当小程序初始化完成时,会触发 onLaunch(全局只触发一次) */ onLaunch: function () { }, /** * 当小程序启动,或从后台进入前台显示,会触发 onShow */ onShow: function (options) { }, /** * 当小程序从前台进入后台,会触发 onHide */ onHide: function () { }, /** * 当小程序发生脚本错误,或者 api 调用失败时,会触发 onError 并带上错误信息 */ onError: function (msg) { } })
<!--test.wxml--> <text class="msg">{{message}}</text> <button bindtap="change">点我</button> <image class="img" mode="widthFix" bindload="loadimg" src="http://www.youbaobao.xyz/mpvue-docs/assets/img/wechat_code_structure.a9c025e2.jpg"></image>
// test.js Page({ /** * 页面的初始数据 */ data: { message:'小慕读书上线啦!' }, change() { // this.message = '欢迎学习mpvue!' this.setData({ message:'欢迎学习mpvue!' }) wx.showToast({ title: '小慕读书上线', mask:true, success() { console.log('toast调用成功!') } }) const account = wx.getAccountInfoSync(); console.log(account) }, loadimg(val) { console.log(val); }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) {}, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () {}, /** * 生命周期函数--监听页面显示 */ onShow: function () {}, /** * 生命周期函数--监听页面隐藏 */ onHide: function () {}, /** * 生命周期函数--监听页面卸载 */ onUnload: function () {}, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () {}, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () {}, /** * 用户点击右上角分享 */ onShareAppMessage: function () {} })
112019-08-21 -
Sam
2019-08-19
好的,麻烦你贴一下wxml和js文件的完整源码给我看下
022019-08-20
相似问题