微信小程序获取循环元素id以及wx.login登录操作
wxml里:
<text id="L_name">{{item.name}}
<text id="L_price">¥{{item.price}}/{{item.unit}}
<text id="L_place">{{item.place}}
<text id="L_date">(数据更新时间:{{item.date}})
<a catchtap="gotoresult" id="{{item.name}}" class="button">肉产类
上面的a标签的id是通过循环来的,js能通过catchtap="gotoresult"来获取当前点击的元素idjs里:
var ep = e.target.id
console.log(ep);
}
js里:
获取的secret",js_code: res.code,grant_type:"authorization_code"
},success:function(res){
message=res.data;
console.log(message.openid)//返回的res里有用户openid等私密信息
}
})
} else {
console.log('获取用户登录态失败!' + res.errMsg)//异常反馈
}
}
});
通过以上方式,可以向微信发送请求获取传回来的openid等信息;
小程序通过wx.checkSession可以判断登录是否过期
js里:
登录态过期
wx.login() //重新登录
....
}
})
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:https://www.f2er.com/weapp/37043.html