微信小程序-学生登录后跳转-显示教师页面信息

1.页面跳转。

//页面跳转
      wx.redirectTo({
        url: '../teachers/teachers'  //跳转到教师页面
      })
   

2.显示老师页面信息

wxml中

任课教师列表
  
  
     
        
     
     姓名:{{item.teachername}}  

     任课:{{item.course}}    
  
 

3.js中

  data: {
    teachers:null
  },
 /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    var url = "https://...";//url地址
    // var student = wx.getStorageSync('student');
    // console.log(student);
    var classid = '100000-1603';//班级id
    console.log(classid);

    wx.request({
      url: url,
      data: {
        classid: classid
      },
      header: {
        'content-type': 'application/json' // 默认值
      },
      success: (res)=> {
        console.log(res.data);
        this.setData({teachers:res.data});
      }
    })
      
  },
   在wxml中选中老师信息,然后实现跳转到老师评教页面。
  // 选中教师
  selectTeacher:function(e){
     var  teacherid = e.currentTarget.dataset.teacherid;
     console.log(teacherid);
     wx.navigateTo({
       url: "../testpaper/testpaper?teacherid="+teacherid,
     })
  }
})


你可能感兴趣的:(微信小程序)