json格式化
通过pre标签进行格式化展示,使用JSON.stringify()方法转换。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <html> <head> <title>HTML显示json字符串并且进行格式化</title> </head> <body> <p id= "show_p" >{ "name" : "Brett" , "address" : "北京路23号" , "email" : "123456@qq.com" }</p> <pre id= "out_pre" ></pre> </body> <script type= "text/javascript" > var text = document.getElementById( 'show_p' ).innerText; //获取json格式内容 var result = JSON.stringify(JSON.parse(text), null , 2); //将字符串转换成json对象 document.getElementById( 'out_pre' ).innerText= result ; </script> </html> --------------------- 作者:低调之人 来源:CSDN 原文:https: //blog.csdn.net/lilinoscar/article/details/79214469?utm_source=copy 版权声明:本文为博主原创文章,转载请附上博文链接! |
注意:如果需要转换的格式是字符串,就要进行:JSON.parse()转换,否则直接使用JSON.stringify()无效。
package com.cosmo.sandtable.configure; import org.springframework.boot.jackson.JsonComponent; /** * 全局日期格式化 */ @JsonComponent public class DateFormatConfig { private static SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); /** * 日期格式化 */ public static class DateJsonSerializer extends JsonSerializer<Date> { @Override public void serialize(Date date, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException { jsonGenerator.writeString(dateFormat.format(date)); } } /** * 解析日期字符串 */ public static class DateJsonDeserializer extends JsonDeserializer<Date> { @Override public Date deserialize(JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException, JsonProcessingException { try { return dateFormat.parse(jsonParser.getText()); } catch (ParseException e) { throw new RuntimeException(e); } } } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?