123456789101112131415161718192021222324 |
- const app = getApp();
- let that = null;
- Page({
- onMessage: function(e) {
- console.log("onMessage====>"+e.detail.data); // 这里将打印出从H5页面传递过来的数据
- },
- onLoad(options) {
- that = this;
- if (options.url != null) {
- this.setData({
- webUrl: options.url,
- });
- if (options.title != null) {
- wx.setNavigationBarTitle({
- title: options.title,
- });
- }
- } else {
- wx.navigateBack({
- delta: 1,
- });
- }
- },
- });
|