微信小程序的省市区选择器

时间:2019-01-09 16:40:18   收藏:0   阅读:2224
<view style=margin-top:100rpx>省市区选择器</view>
<picker mode="region" bindchange=changeZone value={{region}} >
{{zonePick}}
</picker>
<input value="{{currentZone}}" placeholder=显示当前选择地区 />
  changeZone:function(e){
    var zone = e.detail.value;
    this.setData({
      currentZone:zone
    })
  }

在data里面设置currentZone为空,region这是设置一个地区的初始值

region: [‘上海市‘, ‘上海市‘, ‘黄浦区‘],例如这个,定位
在mode设置为region之后。那个省市区就全部都有了。
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!