首页 > 作文

[小程序]微信小程序获取input并发送网络请求

更新时间:2023-04-07 13:19:52 阅读: 评论:0

1. 获取输入框数据
wxml中的input上增加bindinput属性,和不死的青春方法值
在js部分定义与之对应的方法,只要在输入的时候,数据就会绑定调用到该方法,存入data属性变量中

2. 调用get请求发起网络请求
调用wx.request发起网络请求

3.调用微信toast接口展示结果

4.按钮绑定bindtap属性,当按钮点击的时候会调用对应的方法

index.wxml部分

<view class="indexinput">  <input  maxlength="100" bindinput="getemail" placeholder="邮箱地址" /></view><view class="indexinput">  <input password  maxlength="30" bindinput="getpasswd" placeholder="密码" /></view><view class="indexbutton"><button type="primary" bindtap="checklogin" loading="{{loading}}"> 登录 </button></view>

index.js部分

//index.js//获取应用实例const app = getapp()page({  data: {    email:"",    passwd:"",  },  onload: function () {  },  //获取输入框数据  getemail:function(e){    this.tdata({      email: e.detail.value    })  },  //获取输入框数据  getpasswd: function (e) {    this.tdata({      passwd: e.detail.value    })  },  /*  * 验证用户名密码是否正确   */  checklogin:function(){    var email=this.data.email;    var passwd = this.data.passwd;    var dat中国精神作文a={      loginfrom:"app",      emai八年级下数学作业本l: email,      psw: passwd,      output: "json"    };    var url = "https://api.sopans.com/third/login.php";    wx.request({        url: ur隐函数求导l,        method: 'get',        data: data,        header: {          'content-type': 'application/json'        },        success(res) {          if(res.data.code=200){            wx.showtoast({              title: '成功',              icon: 'success',    爱心素材          duration: 2000            })          }        }    });  }})

本文发布于:2023-04-07 13:19:51,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/8a29760c6a4230d59bc194920de15b32.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:[小程序]微信小程序获取input并发送网络请求.doc

本文 PDF 下载地址:[小程序]微信小程序获取input并发送网络请求.pdf

标签:方法   数据   输入框   属性
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图