多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### ## 接口名称 `Area/areaTree` ### 接口描述 获取所有的省级地区列表 ### 演示地址 `http://URL/Area/areaTree` ### 输入参数 ~~~ (string) oauth_token (必填) (string) oauth_token_secret (必填) ~~~ ### 输出结果 ~~~ 成功 { "status": 1, "list": [ { "id": "110000", "pid": "0", "title": "北京市", "level": "0", "child": [ { "id": "110100", "pid": "110000", "title": "北京市", "level": 1, "child": [ { "id": "110101", "pid": "110100", "title": "东城区", "level": 2, "child": null }, { "id": "110102", "pid": "110100", "title": "西城区", "level": 2, "child": null }, { "id": "110103", "pid": "110100", "title": "崇文区", "level": 2, "child": null }, { "id": "110104", "pid": "110100", "title": "宣武区", "level": 2, "child": null }, { "id": "110105", "pid": "110100", "title": "朝阳区", "level": 2, "child": null }, { "id": "110106", "pid": "110100", "title": "丰台区", "level": 2, "child": null }, { "id": "110107", "pid": "110100", "title": "石景山区", "level": 2, "child": null }, { "id": "110108", "pid": "110100", "title": "海淀区", "level": 2, "child": null }, { "id": "110109", "pid": "110100", "title": "门头沟区", "level": 2, "child": null }, { "id": "110111", "pid": "110100", "title": "房山区", "level": 2, "child": null }, { "id": "110112", "pid": "110100", "title": "通州区", "level": 2, "child": null }, { "id": "110113", "pid": "110100", "title": "顺义区", "level": 2, "child": null }, { "id": "110114", "pid": "110100", "title": "昌平区", "level": 2, "child": null }, { "id": "110115", "pid": "110100", "title": "大兴区", "level": 2, "child": null }, { "id": "110116", "pid": "110100", "title": "怀柔区", "level": 2, "child": null }, { "id": "110117", "pid": "110100", "title": "平谷区", "level": 2, "child": null } ] }, { "id": "110200", "pid": "110000", "title": "县", "level": 1, "child": [ { "id": "110228", "pid": "110200", "title": "密云县", "level": 2, "child": null }, { "id": "110229", "pid": "110200", "title": "延庆县", "level": 2, "child": null } ] } ] }, { "id": "120000", "pid": "0", "title": "天津市", "level": "0", "child": [ { "id": "120100", "pid": "120000", "title": "市辖区", "level": 1, "child": [ { "id": "120101", "pid": "120100", "title": "和平区", "level": 2, "child": null }, { "id": "120102", "pid": "120100", "title": "河东区", "level": 2, "child": null }, { "id": "120103", "pid": "120100", "title": "河西区", "level": 2, "child": null }, { "id": "120104", "pid": "120100", "title": "南开区", "level": 2, "child": null }, { "id": "120105", "pid": "120100", "title": "河北区", "level": 2, "child": null }, { "id": "120106", "pid": "120100", "title": "红桥区", "level": 2, "child": null }, { "id": "120107", "pid": "120100", "title": "塘沽区", "level": 2, "child": null }, { "id": "120108", "pid": "120100", "title": "汉沽区", "level": 2, "child": null }, { "id": "120109", "pid": "120100", "title": "大港区", "level": 2, "child": null }, { "id": "120110", "pid": "120100", "title": "东丽区", "level": 2, "child": null }, { "id": "120111", "pid": "120100", "title": "西青区", "level": 2, "child": null }, { "id": "120112", "pid": "120100", "title": "津南区", "level": 2, "child": null }, { "id": "120113", "pid": "120100", "title": "北辰区", "level": 2, "child": null }, { "id": "120114", "pid": "120100", "title": "武清区", "level": 2, "child": null }, { "id": "120115", "pid": "120100", "title": "宝坻区", "level": 2, "child": null } ] }, { "id": "120200", "pid": "120000", "title": "县", "level": 1, "child": [ { "id": "120221", "pid": "120200", "title": "宁河县", "level": 2, "child": null }, { "id": "120223", "pid": "120200", "title": "静海县", "level": 2, "child": null }, { "id": "120225", "pid": "120200", "title": "蓟 县", "level": 2, "child": null } ] } ] } } } 失败 { "status": 0, "list": "[]" } ~~~ 、、