index.js 511 B

123456789101112131415161718192021222324
  1. const app = getApp();
  2. let that = null;
  3. Page({
  4. onMessage: function(e) {
  5. console.log("onMessage====>"+e.detail.data); // 这里将打印出从H5页面传递过来的数据
  6. },
  7. onLoad(options) {
  8. that = this;
  9. if (options.url != null) {
  10. this.setData({
  11. webUrl: options.url,
  12. });
  13. if (options.title != null) {
  14. wx.setNavigationBarTitle({
  15. title: options.title,
  16. });
  17. }
  18. } else {
  19. wx.navigateBack({
  20. delta: 1,
  21. });
  22. }
  23. },
  24. });