diff --git a/README.md b/README.md index d08e672c..76b6b01d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,9 @@ 来自中华人民共和国民政部,用于查询中国省,市和区数据的网站。 -- [中华人民共和国行政区划代码,更新时间:2020-03-06](http://www.mca.gov.cn/article/sj/xzqh/2020/) +> ⚠️ 2020-03-30 新增一个街道,街道数据暂未更新。 + +- [中华人民共和国行政区划代码,更新时间:2020-03-30](http://www.mca.gov.cn/article/sj/xzqh/2020/) - [统计用区划和城乡划分代码,更新时间:2020-02-25](http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/) ### 数据更新 Diff diff --git a/script/utils.js b/script/utils.js index b45b498c..d0fb2b54 100644 --- a/script/utils.js +++ b/script/utils.js @@ -48,7 +48,7 @@ exports.getProvinceCity = () => { return new Promise(async (resolve, reject) => { try { console.log('=> 获取省市区数据') - const res = await request.get('http://www.mca.gov.cn/article/sj/xzqh/2020/2020/202003061536.html'); + const res = await request.get('http://www.mca.gov.cn/article/sj/xzqh/2020/2020/202003301019.html'); if (!res || !res.text) return resolve([]); const $ = cheerio.load(res.text); const data = [];