Last active
August 24, 2024 15:24
-
-
Save afc163/7582f35654fd03d5be7009444345ea17 to your computer and use it in GitHub Desktop.
Address options for antd cascader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import provinces from 'china-division/dist/provinces.json'; | |
import cities from 'china-division/dist/cities.json'; | |
import areas from 'china-division/dist/areas.json'; | |
areas.forEach((area) => { | |
const matchCity = cities.filter(city => city.code === area.cityCode)[0]; | |
if (matchCity) { | |
matchCity.children = matchCity.children || []; | |
matchCity.children.push({ | |
label: area.name, | |
value: area.code, | |
}); | |
} | |
}); | |
cities.forEach((city) => { | |
const matchProvince = provinces.filter(province => province.code === city.provinceCode)[0]; | |
if (matchProvince) { | |
matchProvince.children = matchProvince.children || []; | |
matchProvince.children.push({ | |
label: city.name, | |
value: city.code, | |
children: city.children, | |
}); | |
} | |
}); | |
const options = provinces.map(province => ({ | |
label: province.name, | |
value: province.code, | |
children: province.children, | |
})); | |
export default options; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
感谢,有帮助~~