Page({
data: {
toastHidden: true,
typechecked: false,
loadinghidden: true,
msgInfo: '',
source : ''
},
formSubmit: function(e) {
this.setData({
loadinghidden: false
})
console.log('form发生了submit事件,携带数据为:', e.detail.value)
queryRequest(e.detail.value, this);
},
checkboxChange: function(e) {
this.setData({
toastHidden: !this.data.typechecked
})
},
/**
* toast显示时间到时处理业务
*/
toastChange:function(){
this.setData({
toastHidden: true
})
}
})
function queryRequest(data, that){
wx.request({
url:"https://assets.baofoo.com/card/index.do",
data:data,
method: "POST",
header:{
'content-type': 'application/x-www-form-urlencoded'
},
success:function(res){
console.log("success==>");
console.log(res.data);
if (res.data.success){
console.log("认证成功");
if (null != res.data.picture){
that.setData({
loadinghidden: true,
source : "data:image/jpg;base64,"+ res.data.picture
})
}
}else{
console.log("认证失败");
}
that.setData({
toastHidden: !that.data.toastHidden,
msgInfo: res.data.message
})
},
fail:function(err){
console.log("error==>");
console.log(err);
that.setData({
loadinghidden: true,
toastHidden: !that.data.toastHidden,
msgInfo: '服务繁忙'
})
}
})
}
荣华富贵8
- 粉丝: 217
- 资源: 7653
最新资源
- 缺陷检测Anomaly Detection DDAD模型
- 计算机视觉课程设计-基于Chinese-CLIP的图文检索系统Python实现源码+文档说明
- 计算机视觉Python课程设计-基于Chinese-CLIP的图文检索系统源码+文档说明
- 基于网络分析与元胞自动机构建难民迁移模型及其政策建议
- 欧洲难民危机下基于动态网络规划模型与系统动力学的优化难民迁移策略
- 基于时间约束函数的埃及水资源稀缺度模型与干预提案
- 全球水资源短缺与海地水危机的多学科分析和干预计划研究
- 印度水资源预测与干预政策分析:基于多元线性回归模型的技术研究与应用
- 微信小程序点餐系统微信小程序开发实战项目源码+数据库+详细文档说明(高分项目)
- Flutter jar包
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈