微信小程序实现:输入手机号点击按钮查询手机号归属地



<view >
  <input  bindinput="listenPhoneInput"  type="number"  auto-focus="true" class="phoneInput"  placeholder="请输入您的手机号"/>
  <button bindtap="queryPhoneLocation" type="primary" >查询button>
  <view wx:for="{{message}}">
    {{item}}
  view>
view>
/*CSS*/
.phoneInput{
  margin-top: 10px;
  border:3px solid #48c416;
  height:35px;
  border-radius: 5px;
  text-align: center;
}
button{
  width: 100%;
  float: left;
  margin-top: 10px;
}
// pages/order/order.js
Page({
  data: {
    message:{},
    phoneNumber:"",
  },
  //监听手机号的输入
  listenPhoneInput(e){
    this.data.phoneNumber = e.detail.value
  },
  //点击按钮查询
  queryPhoneLocation(e){
    console.log("输入的手机号是:"+this.data.phoneNumber)
    wx.request({
       url: 'http://apis.juhe.cn/mobile/get',
       data:{
        phone:this.data.phoneNumber,
        key:'xxxxxxxxxxxxxxxxxxxxxxxxxxx'
     },
     header:{
      'Content-Type':'application/x-www-form-urlencoded',
     },
      success:(res)=>{
        this.setData({
          message:res.data.result
        })
      }
    })
    },
    
})

【运行结果】

微信小程序实现:输入手机号点击按钮查询手机号归属地_第1张图片
输入手机号,点击按钮

微信小程序实现:输入手机号点击按钮查询手机号归属地_第2张图片
微信小程序实现:输入手机号点击按钮查询手机号归属地_第3张图片

ps:接口来源
https://www.juhe.cn/docs/api/id/11

你可能感兴趣的:(微信小程序调用聚合数据接口,微信小程序,小程序)