HarmonyOS 如何做一个选择三级联动的省市区选择器

HarmonyOS
4h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect

可以用TextPicker来实现,参考文档:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/ts-basic-components-textpicker-V5

示例代码:

@Entry
@Component
struct TextPickerExample {
  private cascade: TextCascadePickerRangeContent[] = [
    {
      text: '辽宁省',
      children: [{ text: '沈阳市', children: [{ text: '沈河区' }, { text: '和平区' }, { text: '浑南区' }] },
        { text: '大连市', children: [{ text: '中山区' }, { text: '金州区' }, { text: '长海县' }] }]
    },
    {
      text: '吉林省',
      children: [{ text: '长春市', children: [{ text: '南关区' }, { text: '宽城区' }, { text: '朝阳区' }] },
        { text: '四平市', children: [{ text: '铁西区' }, { text: '铁东区' }, { text: '梨树县' }] }]
    },
    {
      text: '黑龙江省',
      children: [{ text: '哈尔滨市', children: [{ text: '道里区' }, { text: '道外区' }, { text: '南岗区' }] },
        { text: '牡丹江市', children: [{ text: '东安区' }, { text: '西安区' }, { text: '爱民区' }] }]
    }
  ]

  build() {
    Column() {
      TextPicker({ range: this.cascade })
        .onChange((value: string | string[], index: number | number[]) => {
          console.info('TextPicker 多列联动:onChange ' + JSON.stringify(value) + ', ' + 'index: ' + JSON.stringify(index))
        })
    }
  }
}
分享
微博
QQ
微信
回复
1h前
相关问题
HarmonyOS 如何实现级联选择省市区
407浏览 • 1回复 待解决
HarmonyOS 如何获取用户所在省市区
344浏览 • 1回复 待解决
HarmonyOS图片选择器相关问题
472浏览 • 1回复 待解决
HarmonyOS 需要二级联动demo
290浏览 • 1回复 待解决
TimePicker如何设置时间选择器范围?
6996浏览 • 1回复 待解决
HarmonyOS 地区选择器多级列表效果
365浏览 • 1回复 待解决
HarmonyOS 日期/日历/时间选择器开发
519浏览 • 1回复 待解决