收藏
回答

微信小程序开发问题 切换城市 手动点击选择城市列表选择其他城市后怎么让城市显示出来 新手不会 求助?

const app = getApp()


Page({
  data: {
   winHeight: 0
  },
  //监听传值,后面自己做处理了
  cityTap(e) {
    console.log(e);
    const cityName = e.detail.cityname;
    // const cityName =  e.currentTarget.dataset.cityName;
    console.log('选择城市为:' + cityName);
    console.log('此处选择后,跳转页面,将城市名传过去显示到页面');
    this.setData({
      cityName:cityName


    })
    wx.setStorageSync('cityName', cityName)
    wx.switchTab({
      url: '/pages/index/index',
    })
    
  },


  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    const win = wx.getSystemInfoSync();
    console.log(win);
    this.setData({
      winHeight: win.windowHeight
    });


  }
})


回答关注问题邀请回答
收藏

2 个回答

  • 刘高艺
    刘高艺
    2020-11-18
    url'/pages/index/index?cityName='+ 'cityName',// 跳转到首页后再onload里的opthions对象可以获取到cityName的值,这样子选好的城市就可以展示到首页了
    
    2020-11-18
    有用
    回复
  • 小任vivo
    小任vivo
    2020-06-30

    求帮忙

    2020-06-30
    有用
    回复
登录 后发表内容
问题标签