微信小程序省市区联动,自定义地区字典

  

 

  最近在做一个项目的时候遇到了这么一个问题,就是省市区的联动呢,我们需要自定义字典来设置,那么微信小程序自带的省市区选择就不能用了,经过三根烟的催化,终于写出来了。下面献上代码示例。

  首先是在utils文件夹存入arealist.js文件,内容为:

const areaList=[{name:'河南',id:1,parentId:0},{name:'浙江',id:2,parentId:0},{name:'郑州',id:3,parentId:1},{name:'新乡',id:4,parentId:1},{name:'洛阳',id:5,parentId:1},{name:'二七区',id:6,parentId:3},{name:'金水区',id:7,parentId:3},{name:'高新区',id:8,parentId:3},{name:'中原区',id:9,parentId:3},{name:'封丘县',id:10,parentId:4},{name:'原阳县',id:11,parentId:4},{name:"延津县",id:12,parentId:4},{name:'获嘉县',id:13,parentId:4},{name:'孟津县',id:14,parentId:5},{name:'新安县',id:15,parentId:5},{name:'杭州市',id:16,parentId:2},{name:'台州市',id:17,parentId:2},{name:'西湖区',id:18,parentId:16},{name:'滨江区',id:19,parentId:16},{name:'余杭区',id:20,parentId:16},{name:'椒江区',id:21,parentId:17},{name:'黄岩区',id:22,parentId:17}
];
module.exports = areaList;
View Code

  然后在需要的页面引入地区字典,并且在onLoad的时候解析字典,遍历出一级数据,留备后用。

const areaList=require('../../utils/arealist.js');
Page({data: {multiArray: [],multiIndex: [0, 0, 0],province:[]},bindMultiPickerChange: function (e) {console.log('picker发送选择改变,携带值为', e.detail.value)this.setData({multiIndex: e.detail.value})},bindMultiPickerColumnChange: function (e) {console.log('修改的列为', e.detail.column, ',值为', e.detail.value);var data = {multiArray: this.data.multiArray,multiIndex: this.data.multiIndex};data.multiIndex[e.detail.column] = e.detail.value;const provinceName=data.multiArray[0][data.multiIndex[0]];let provinceId="";let province = this.data.province;let quyuList = [], cityList = [], provinceList=[],city=[],area=[];try {province.forEach(item => {if (item.name === provinceName) {provinceId = item.id;throw (new Error('find item'))}})} catch (err) {}city = areaList.filter(item => {return item.parentId == provinceId;})if (e.detail.column==0){data.multiIndex=[e.detail.value,0,0];try{area = areaList.filter(item => {return item.parentId == city[data.multiIndex[1]].id;})}catch(err){}} else if (e.detail.column == 1){data.multiIndex[2]=0;area = areaList.filter(item => {return item.parentId == city[e.detail.value].id;})}else{const cityName = data.multiArray[1][data.multiIndex[1]];let cityId='';try{areaList.forEach(item=>{if(item.name===cityName){cityId=item.id;throw(new Error('find item'));}})}catch(err){}area=areaList.filter(item=>{return item.parentId==cityId;})}provinceList = province.map(item => {return item.name})cityList = city.map(item => {return item.name;})quyuList = area.map(item => {return item.name;})data.multiArray= [provinceList, cityList, quyuList],this.setData(data);},onLoad(){var province = [], city = [], area = [];province=areaList.filter(item => {return item.parentId == 0;})city = areaList.filter(item => {return item.parentId == province[0].id;})area = areaList.filter(item => {return item.parentId == city[0].id;})var provinceList = province.map(item => {return item.name})var cityList = city.map(item => {return item.name;})var quyuList = area.map(item => {return item.name;})this.setData({multiArray: [provinceList, cityList, quyuList],province})}
})

  下面是wxml页面,想要看一下效果的可以直接贴去看下

<view class="section"><view class="section__title">多列选择器</view><picker mode="multiSelector" bindchange="bindMultiPickerChange" bindcolumnchange="bindMultiPickerColumnChange" value="{{multiIndex}}" range="{{multiArray}}"><view class="picker">当前选择:{{multiArray[0][multiIndex[0]]}},{{multiArray[1][multiIndex[1]]}},{{multiArray[2][multiIndex[2]]}}</view></picker>
</view>

   提示:在微信开发者工具中会出现一级目录选项改变二级目录的选项没有把index回置为0的问题,但是在真机调试的时候并未发现此问题。暂未找到相关解释

转载于:https://www.cnblogs.com/gitByLegend/p/11413597.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/262802.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

论文翻译《Object-Level Ranking: Bringing Order to Web Objects》

Object-Level Ranking: Bringing Order to Web Objects Zaiqing Nie Yuanzhi Zhang Jirong Wen Weiying Ma 摘要&#xff1a; 现在的网络搜索方法实际上是做文档级排名和检索&#xff0c;与之相对比&#xff0c;我们在探索一种新的聚合体以实现在对象级的网络检索。我们搜集与某…

C# 定时器定时更新

class Program{static void Main(string[] args){//for (int i 0; i < 100; i)//{// SendMessage("131", "131");//}System.Timers.Timer aTimer new System.Timers.Timer();aTimer.Elapsed new ElapsedEventHandler(aTimer_Elapsed);// 设置引发…

前端vscode常用插件

Auto Rename Tag 这是一个html标签的插件&#xff0c;可以让你修改一边标签&#xff0c;另外一边自动改变。 Beautify 格式化代码插件 Braket Pair Colorizer 给js文件中的每一个小括号()花括号{}都配上不同的颜色&#xff0c;方便找到哪一个位置多了少了括号。 Debugger for C…

在线条形码生成器

条形码又称条码、一维码&#xff0c;是将字符按照特定的规则转化成二进制后&#xff0c;描绘成一个宽度不等的多个黑条和空白&#xff0c;按照一定的编码规则排列的图形标识符&#xff0c;条形码现在应用相当广泛&#xff0c;一出门&#xff0c;随便翻一样东西&#xff0c;可能…

装箱拆箱

1、 装箱和拆箱是一个抽象的概念 2、 装箱是将值类型转换为引用类型 &#xff1b;拆箱是将引用类型转换为值类型 利用装箱和拆箱功能&#xff0c;可通过允许值类型的任何值与Object 类型的值相互转换&#xff0c;将值类型与引用类型链接起来 例如&#xf…

[JSOI2008 Prefix火星人]

[关键字]&#xff1a;splay hash 二分 [题目大意]&#xff1a;给出一个字符串&#xff0c;求出给定的两个后缀的的最长公共前缀。在求的过程中会有改变或在某个位置添加字符的操作。 // [分析]&#xff1a;一听最长公共前缀马上想到后缀数组&#xff0c;但因为是动态维护所以后…

简单实用方法!!

简单验证码生成&#xff01;&#xff01; protected void Page_Load(object sender, EventArgs e) { string CharList "0123456789"; int[] size { 10, 12, 14 }; string[] fm { "宋体", "楷体_G…

浅谈微信小程序生命周期

之前在做微信小程序的时候&#xff0c;一直对生命周期里面的onLoad&#xff0c;onShow&#xff0c;onUnload不是很理解。比如说什么时候会触发onUnload。 经过一段时间的测试发现&#xff0c;普通页面的onUnload在三种情况下会触发。 某一个页面跳转到tabBar页面&#xff0c;根…

POJ 1013 Counterfeit Dollar 称硬币

12个硬币&#xff0c;有一个假的 或轻或重&#xff0c;找出假硬币 开始用的模拟&#xff0c;考虑很多情况 后来&#xff0c;lmy说轻的-1&#xff0c;重的1&#xff0c;学数学的看什么都是数字&#xff0c;orz 模拟写的两个差不多的代码&#xff1a; (一&#xff09; #include&l…

DELPHI学习---结构类型

Structured types (结构类型) 结构类型的一个实例可包含多个值。结构类型包括集合、数组、记录&#xff0c;也包括类、类引用&#xff08;class-reference&#xff09; 和接口类型。除了集合只能包含有序值以外&#xff0c;结构类型可以包含其它的结构类型&#xff0c;且结构的…

ios学习笔记block回调的应用(一个简单的例子)

一、什么是Blocks Block是一个C级别的语法以及运行时的一个特性&#xff0c;和标准C中的函数&#xff08;函数指针&#xff09;类似&#xff0c;但是其运行需要编译器和运行时支持&#xff0c;从ios4.0开始就很好的支持Block。 二、在ios开发中&#xff0c;什么情况下使用…

vue定义global.js,挂载在vue原型上面使用

首先在src目录下创建global目录&#xff0c;在global目录下创建index.js。 export default {install(Vue) {var that this// 1. 添加全局方法或属性// ue.global this// 2. 添加全局资源// 3. 注入组件Vue.mixin({created() {this.global that}})// 大于一的整数验证&#x…

Configuration、SessionFactory、Session

org.hibernate.cfg Class Configuration An instance of Configuration allows(允许) the application to specify properties and mapping documents to be used when creating a SessionFactory. Usually an application will create a single Configuration, build a singl…

函数声明指令(stdcall, cdecl,pascal,register)

指令 参数存放位置 参数传递顺序 参数内存管理 适用地点registerCPU寄存器从左到右被调用者默认&#xff0c;published 属性存取方法必须使用pascal栈从左到右被调用者向后兼容cdecl栈从右到左调用者调用 C 共享库stdcall栈从右到左被调用者API 调用safecall栈从右到左被调用…

uni-app相关

uni-app 中以下组件的高度是固定的&#xff0c;不可修改&#xff1a; 导航栏高度固定为 44pxtabBar 高度固定为 56px 状态栏比较特殊&#xff0c;是一个变量 .status_bar{height: var(--status-bar-height);width: 100%; } uni-app 使用 vue/cli 创建项目的时候&#xff0c;如果…

《Windows游戏编程大师技巧》三、Windows高级编程

Windows编程很绝的地方在于&#xff1a;你不用了解太多细节&#xff0c;就可以完成很多工作。使用资源资源就是你的程序代码结合在一起的多块数据&#xff0c;可以被程序本身在运行时加载。资源应当也放在程序的.EXE文件中的原因是&#xff1a;1.同时包含代码和数据的.EXE文件更…

结构型模式--装饰模式

下面先用java&#xff0c;然后用Objective&#xff0d;C行对装饰模式的讲解&#xff1a; 对于java的装饰模式讲解和使用比较详细和难度有点偏高&#xff0c;而对于Objective&#xff0d;C的装饰模式讲解和使用方面比较简单&#xff0c;而且和java的装饰模式略有差异&#xff0c…

ArcGIS.Server.9.2.DotNet自带例子分析(三、一)

目的&#xff1a; 1.arcgis server9.2 ADF的AddGraphics。 准备工作&#xff1a; 1.用ArcGis Server Manager或者ArcCatalog发布一个叫world的Map Service,并且把这个Service启动起来。 2.找到DeveloperKit\SamplesNET\Server\Web_Applications目录下的Common_AddGraphicsCShar…

linux 使用timedatectl 修改时区和时间

使用timedatectl可以进行如下常见操作 1.查看当前时间/日期/时区&#xff1a;timedatectl或者timedatectl status 2.查看所有可用时区&#xff1a;timedatectl list-timezones 3.设置时区&#xff1a;timedatectl set-timezone “Asia/Shanghai” 或者 timedatectl set-time…

aspose将datatable导出excel 比自己拼好的多 Bug少-。.net

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; using System.Data; using Aspose.Cells; /// <summary> ///OutFileDao 的摘要说明 /// </summary> publicclass OutFileDao { public OutFileDa…