微信小程序 ecshop地址三級(jí)聯(lián)動(dòng)實(shí)現(xiàn)實(shí)例代碼
微信小程序 ecshop地址3級(jí)聯(lián)動(dòng)實(shí)現(xiàn)實(shí)例代碼
picker標(biāo)簽,官方給出的實(shí)例:
<view class="section"> <view class="section__title">地區(qū)選擇器</view> <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}"> <view class="picker"> 當(dāng)前選擇:{{array[index]}} </view> </picker> </view> Page({ data: { array: ['美國(guó)', '中國(guó)', '巴西', '日本'], index: 0, }, bindPickerChange: function(e) { console.log('picker發(fā)送選擇改變,攜帶值為', e.detail.value) this.setData({ index: e.detail.value }) }, })
wxml頁(yè)面:
<view class="add-list under-line" > <view class="add-lab">收貨地址</view> <view class="add-text"> <picker class="w-3" bindchange="bindPickerProvince" value="{{provinceIndex}}" range="{{province}}" > <view class="picker">{{province[provinceIndex]}}</view> </picker> <picker class="w-3" bindchange="bindPickerCity" value="{{cityIndex}}" range="{{city}}" > <view class="picker">{{city[cityIndex]}}</view> </picker> <picker class="w-3" bindchange="bindPickerDistrict" value="{{districtIndex}}" range="{{district}}" > <view class="picker">{{district[districtIndex]}}</view> </picker> </view> </view>
js頁(yè)面:
var app = getApp() Page({ data:{ motto: 'jxcat', serverUrl: app.globalData.ajaxUrl, baseUrl: app.globalData.baseUrl, title: "收貨地址", address_id: "", address: "", province:[], province_id: [], //后臺(tái)返回的數(shù)據(jù)對(duì)應(yīng) region_id city,district 與此相同 province_name: [], //后臺(tái)返回的數(shù)據(jù)對(duì)應(yīng) region_name provinceIndex: 0, //wxml頁(yè)面選擇的選項(xiàng),從0開(kāi)始 provinceId: 0, //根據(jù)wxml頁(yè)面選擇的選項(xiàng)獲取到province_id: []對(duì)應(yīng)的region_id city:[]. city_id: [], city_name: [], cityIndex: 0, cityId: 0, district:[], district_id: [], district_name: [], districtIndex: 0, districtId: 0, }, onLoad:function(options){ // 頁(yè)面初始化 options為頁(yè)面跳轉(zhuǎn)所帶來(lái)的參數(shù) var that = this var get_data wx.checkSession({ success: function(){ //登錄態(tài)未過(guò)期 wx.getStorage({ key: 'wcx_session', success: function(sres) { get_data = { m: 'api', c: 'user' , a: 'edit_address', wcx_session: sres.data, } if(options.act == 'edit'){ get_data = { m: 'api', c: 'user' , a: 'edit_address', id: options.id, wcx_session: sres.data, } } wx.request({ url: app.globalData.ajaxUrl, data: get_data, header: { 'content-type': 'application/json' }, success: function(res) { if(options.act == "edit"){ that.data.provinceId = res.data.consignee.province that.data.cityId = res.data.consignee.city that.data.districtid = res.data.consignee.district } for(var i=0; i<res.data.province_list.length; i++){{ that.data.province_id[i] = res.data.province_list[i].region_id //把region_id存入province_id that.data.province_name[i] = res.data.province_list[i].region_name //把region_name存入province_name if(res.data.consignee.province == res.data.province_list[i].region_id){ that.data.provinceIndex = i } }} for(var i=0; i<res.data.city_list.length; i++){{ that.data.city_id[i] = res.data.city_list[i].region_id that.data.city_name[i] = res.data.city_list[i].region_name if(res.data.consignee.city == res.data.city_list[i].region_id){ that.data.cityIndex = i } }} for(var i=0; i<res.data.district_list.length; i++){{ that.data.district_id[i] = res.data.district_list[i].region_id that.data.district_name[i] = res.data.district_list[i].region_name if(res.data.consignee.district == res.data.district_list[i].region_id){ that.data.districtIndex = i } }} that.data.address_id = options.id that.setData({ consignee: res.data.consignee, province: that.data.province_name, provinceIndex: that.data.provinceIndex, city: that.data.city_name, cityIndex: that.data.cityIndex, district: that.data.district_name, districtIndex: that.data.districtIndex }) } }) //request } }) }, fail: function(){ //登錄態(tài)過(guò)期 wx.login() } }) }, bindPickerProvince: function(event){ var that = this var getId = event.detail.value //獲取到wxml選擇的選項(xiàng)對(duì)應(yīng)的下標(biāo),從0開(kāi)始 that.data.provinceId = that.data.province_id[getId] //根據(jù)獲取到的下標(biāo)獲取到region_name對(duì)應(yīng)的region_id wx.request({ url: app.globalData.ajaxUrl, data: { m: 'api', c: 'public' , a: 'region', rtype: 2, rparent: that.data.provinceId, }, header: { 'content-type': 'application/json' }, success: function(res){ for(var i=0; i<res.data.regions.length; i++){{ that.data.city_id[i] = res.data.regions[i].region_id that.data.city_name[i] = res.data.regions[i].region_name }} that.setData({ city: that.data.city_name, provinceIndex: getId, }) }, }) }, bindPickerCity: function(event){ var that = this var getId = event.detail.value that.data.cityId = that.data.city_id[getId] wx.request({ url: app.globalData.ajaxUrl, data: { m: 'api', c: 'public' , a: 'region', rtype: 3, rparent: that.data.cityId, }, header: { 'content-type': 'application/json' }, success: function(res){ for(var i=0; i<res.data.regions.length; i++){{ that.data.district_id[i] = res.data.regions[i].region_id that.data.district_name[i] = res.data.regions[i].region_name }} that.setData({ district: that.data.district_name, cityIndex: getId, }) }, }) }, bindPickerDistrict: function(event){ var that = this var getId = event.detail.value that.data.districtId = that.data.district_id[getId] that.setData({ districtIndex: getId, }) }, formSubmit: function(event) { var that = this wx.checkSession({ success: function(){ //登錄態(tài)未過(guò)期 wx.getStorage({ key: 'wcx_session', success: function(sres) { wx.request({ url: app.globalData.ajaxUrl, data: { m: 'api', c: 'user' , a: 'add_address', address_id: that.data.address_id, province: that.data.provinceId, // wxml頁(yè)面選擇的地址對(duì)應(yīng)的 region_id city: that.data.cityId, district: that.data.districtId, address: event.detail.value.address, consignee: event.detail.value.consignee, mobile: event.detail.value.mobile, zipcode: event.detail.value.zipcode, wcx_session: sres.data, }, header: { 'content-type': 'application/json' }, success: function(res) { console.log(res) wx.redirectTo({ url: 'address' }) } }) //request } }) }, fail: function(){ //登錄態(tài)過(guò)期 wx.login() } }) }, })
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
- 微信小程序如何獲取用戶收貨地址
- 微信小程序三級(jí)聯(lián)動(dòng)地址選擇器的實(shí)例代碼
- 微信小程序?qū)崿F(xiàn)省市區(qū)三級(jí)地址選擇
- 微信小程序?qū)崿F(xiàn)獲取準(zhǔn)確的騰訊定位地址功能示例
- 微信小程序?qū)崿F(xiàn)選擇地址省市區(qū)三級(jí)聯(lián)動(dòng)
- 微信小程序 (地址選擇1)--選取搜索地點(diǎn)并顯示效果
- 微信小程序開(kāi)發(fā)實(shí)現(xiàn)的IP地址查詢功能示例
- 微信小程序 可搜索的地址選擇實(shí)現(xiàn)詳解
- 微信小程序在地圖選擇地址并返回經(jīng)緯度簡(jiǎn)單示例
- 微信小程序自定義地址組件
相關(guān)文章
javascript的setTimeout()使用方法總結(jié)
這篇文章主要給大家分享javascript的setTimeout()使用方法總結(jié),js的setTimeout方法用處比較多,通常用在頁(yè)面刷新了、延遲執(zhí)行了等等,下面我們一起來(lái)看看文章對(duì)該內(nèi)容的具體總結(jié)吧,需要的朋友可以參考一下2021-11-11TypeScript實(shí)用技巧?Nominal?Typing名義類(lèi)型詳解
這篇文章主要為大家介紹了TypeScript實(shí)用技巧?Nominal?Typing名義類(lèi)型詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-09-09JavaScript?Canvas實(shí)現(xiàn)噪點(diǎn)濾鏡回憶童年電視雪花屏
這篇文章主要為大家介紹了JavaScript?Canvas實(shí)現(xiàn)噪點(diǎn)濾鏡回憶童年電視雪花屏,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-09-09微信小程序 LOL 英雄介紹開(kāi)發(fā)實(shí)例
這篇文章主要介紹了微信小程序 LOL 英雄介紹開(kāi)發(fā)的相關(guān)資料,需要的朋友可以參考下2016-09-09JavaScript parseInt0.0000005打印5原理解析
這篇文章主要為大家介紹了JavaScript parseInt0.0000005打印5原理解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-07-075種方法告訴你如何使JavaScript 代碼庫(kù)更干凈
J avaScript無(wú)處不在,從PC端到移動(dòng)設(shè)備端,甚至是后端,都在使用JavaSc ript。在本文中,將嘗試一些可用來(lái)使代碼看起來(lái)更簡(jiǎn)潔的實(shí)踐方案,希望能幫助到大家2021-09-09微信小程序左右滑動(dòng)切換頁(yè)面詳解及實(shí)例代碼
這篇文章主要介紹了微信小程序左右滑動(dòng)切換頁(yè)面詳解及實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下2017-02-02一個(gè)很簡(jiǎn)單的辦法實(shí)現(xiàn)TD的加亮效果.
一個(gè)很簡(jiǎn)單的辦法實(shí)現(xiàn)TD的加亮效果....2006-06-06