//获取应用实例 const app = getApp() Page({ data: { }, //事件处理函数 bindFormSubmit: function (e) { console.log(e.detail.value.textarea); let str = JSON.stringify(e.currentTarget.dataset.item); var pages = getCurrentPages(); var currPage = pages[pages.length - 1]; //当前页面 var prevPage = pages[pages.length - 2]; //上一个页面 if (/[@#\$%\^&\*]+/g.test(e.detail.value.textarea)) { wx.showToast({ title: '备注中含有非法字符!', icon: 'none', duration: 2000 }); return; } prevPage.setData({ remark: e.detail.value.textarea }) wx.navigateBack({ url: '../create_order/create_order?jsonStr=' + str }) }, onLoad: function (options) { let item = JSON.parse(options.jsonStr); if (app.globalData.userInfo) { this.setData({ userInfo: app.globalData.userInfo, hasUserInfo: true, product: item, remark: options.remark, }) } else if (this.data.canIUse) { // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回 // 所以此处加入 callback 以防止这种情况 app.userInfoReadyCallback = res => { this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } } else { // 在没有 open-type=getUserInfo 版本的兼容处理 wx.getUserInfo({ success: res => { app.globalData.userInfo = res.userInfo this.setData({ userInfo: res.userInfo, hasUserInfo: true }) } }) } }, getUserInfo: function (e) { console.log(e) app.globalData.userInfo = e.detail.userInfo this.setData({ userInfo: e.detail.userInfo, hasUserInfo: true }) } })