index.js 664 B

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