# JSON格式化 **Repository Path**: dong_admin/jsonFormat ## Basic Information - **Project Name**: JSON格式化 - **Description**: json格式字符串的格式化显示 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2017-10-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # JSON格式化 json格式字符串的格式化显示 输入字符串:'{"name":"中国","province":[{"name":"黑龙江","cities":{"city":["哈尔滨","大庆"]}},{"name":"广东","cities":{"city":["广州","深圳","珠海"]}}]}' 输出结果为: ``` { name: "中国", province: [ { name: "黑龙江", cities: { city: [ "哈尔滨", "大庆" ] } }, { name: "广东", cities: { city: [ "广州", "深圳", "珠海" ] } } ] } ```