html中如何美化展示json格式数据

直接上代码:

html中主要加一个pre 的标签

GeoJsonTxt示例如下:

    

注意:示例中features,geometry,coordinates,properties,name,description字段是必须有的,         字段名称不能改变,需要扩展的字段可以在properties里面自行添加

	

js代码:

function showGeoJsonTxt(){
	$('#geoJsonTxt').html(JsonFormat());
}

function JsonFormat() {
	var json={
			  "type": "FeatureCollection",
			  "features": [
			    {
			      "type": "Feature",
			      "geometry": {
			        "type": "Point",
			        "coordinates": [
			          123,
			          22,
			          0
			        ]
			      },
			      "properties": {
			        "name": "必须有的字段",
			        "description": "必须有的字段",
					"age":"扩展字段,可以自行添加,扩展",
					"type":"扩展字段,可以自行添加,扩展"
			      }
			    },
				{
			      "type": "Feature",
			      "geometry": {
			        "type": "Point",
			        "coordinates": [
			          123,
			          32,
			          0
			        ]
			      },
			      "properties": {
			        "name": "必须有的字段",
			        "description": "必须有的字段",
			      }
			    }
			  ]
			};
	if (typeof json != 'string') {
		json = JSON.stringify(json, undefined, 2);
	}
		json = json.replace(/&/g, '&').replace(//g, '>');
		return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
			 var cls = 'number';
			 	if (/^"/.test(match)) {
			 			if (/:$/.test(match)) {
			 				cls = 'key';
			 			} else {
			 				cls = 'string';
			 			}
			 	} else if (/true|false/.test(match)) {
			 		cls = 'boolean';
			 	} else if (/null/.test(match)) {
			 		cls = 'null';
			 	}
			 	return '' + match + '';
		 });
}

CSS代码,显示的时候可以更加美化

效果如下:

html中如何美化展示json格式数据_第1张图片

你可能感兴趣的:(前端)