如何利用鸿蒙arkts进行json数据和对象互转-使用JSON库
创始人
2025-01-11 05:33:01
0

1.鸿蒙系统arkts使用JSON库

JSON库中提供json数据和对象互转方式

interface JSON {     /**      * Converts a JavaScript Object Notation (JSON) string into an object.      * @param text A valid JSON string.      * @param reviver A function that transforms the results. This function is called for each member of the object.      * If a member contains nested objects, the nested objects are transformed before the parent object is.      */     parse(text: string, reviver?: (this: any, key: string, value: any) => any): any;     /**      * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.      * @param value A JavaScript value, usually an object or array, to be converted.      * @param replacer A function that transforms the results.      * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.      */     stringify(value: any, replacer?: (this: any, key: string, value: any) => any, space?: string | number): string;     /**      * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.      * @param value A JavaScript value, usually an object or array, to be converted.      * @param replacer An array of strings and numbers that acts as an approved list for selecting the object properties that will be stringified.      * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.      */     stringify(value: any, replacer?: (number | string)[] | null, space?: string | number): string; }

2.示例

2.1.Json文件
{     "userInfo":{       "name":"lili",       "age":30,       "address":"北京市",       "account":"ksnowlv"     },     "subscriptions":[       {         "title":"Flutter入门指南",         "subtitle":"从零开始学习Flutter",         "content":"Flutter是一种用于创建跨平台移动应用程序的开源UI工具包。",         "subscriptionId":"sub001",         "likes":100       },       {         "title":"Dart编程语言介绍",         "subtitle":"学习Dart的基本语法和特性",         "content":"Dart是一种由Google开发的面向对象、类似Java和JavaScript的新型编程语言。",         "subscriptionId":"sub002",         "likes":85       }     ]    }

2.2.Json转换为类

export class MyUser {     userInfo?: UserInfo     subscriptions?: Subscriptions[] }  export class Subscriptions {     title?: string     subtitle?: string     content?: string     subscriptionId?: string     likes?: number }  export class UserInfo {     name?: string     age?: number     address?: string     account?: string } 

2.3.Json转换为对象

    @State myUser: MyUser = null      try {         this.myUser = JSON.parse(this.jsonContent);         const userInfo = this.myUser.userInfo;         console.info(`${this.TAG} userInfo Name: ${userInfo.name} Age: ${userInfo.age} Address: ${userInfo.address} Account: ${userInfo.account}`)          const subscriptions = this.myUser.subscriptions;          subscriptions.forEach((subscription, index) => {             console.info(`${this.TAG} Subscription ${index + 1}:`);             console.info(`${this.TAG}  Title: ${subscription.title}`);             console.info(`${this.TAG}  Subtitle: ${subscription.subtitle}`);             console.info(`${this.TAG}  Content: ${subscription.content}`);             console.info(`${this.TAG}  Subscription ID: ${subscription.subscriptionId}`);             console.info(`${this.TAG}  Likes: ${subscription.likes}`);         });     } catch (error) {         console.error(`${this.TAG} json content:${JSON.stringify(error)}}`)     }

2.4.对象转换Json

    try {         let json = JSON.stringify(this.myUser)         console.info(`${this.TAG} objectToJson jsonString :${json}}`)     } catch (error) {         console.error(`${this.TAG} json content:${JSON.stringify(error)}}`)     }

3.效果

前端页面显示

日志输出

05-29 11:32:26.418  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage userInfo Name: lili Age: 30 Address: 北京市 Account: ksnowlv 05-29 11:32:26.419  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage Subscription 1: 05-29 11:32:26.419  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Title: Flutter入门指南 05-29 11:32:26.419  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Subtitle: 从零开始学习Flutter 05-29 11:32:26.419  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Content: Flutter是一种用于创建跨平台移动应用程序的开源UI工具包。 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Subscription ID: sub001 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Likes: 100 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage Subscription 2: 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Title: Dart编程语言介绍 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Subtitle: 学习Dart的基本语法和特性 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Content: Dart是一种由Google开发的面向对象、类似Java和JavaScript的新型编程语言。 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Subscription ID: sub002 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Likes: 85 05-29 11:32:44.805  20966-7914   0FEFE/JsApp                                        com.exa

最后

如果你想快速提升鸿蒙技术,那么可以直接领取这份包含了:【OpenHarmony多媒体技术、Stage模型、ArkUI多端部署、分布式应用开发、音频、视频、WebGL、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战】等技术知识点。

鸿蒙Next全套VIP学习资料←点击领取!(安全链接,放心点击

1.鸿蒙核心技术学习路线

2.大厂面试必问面试题

3.鸿蒙南向开发技术

 4.鸿蒙APP开发必备

 5.HarmonyOS Next 最新全套视频教程

 6.鸿蒙生态应用开发白皮书V2.0PDF

这份全套完整版的学习资料已经全部打包好,朋友们如果需要可以点击鸿蒙Next全套VIP学习资料免费领取(安全链接,放心点击

相关内容

热门资讯

透视辅助!wepoker私局代... 透视辅助!wepoker私局代打,uupoker有透视吗,资料教程(有挂教学)-哔哩哔哩1、uupo...
第二分钟工具!邯郸胡乐挂,广东... 第二分钟工具!邯郸胡乐挂,广东雀神智能插件,真是真的是有挂(有挂讲解)-哔哩哔哩1、进入到广东雀神智...
五分钟开挂!越乡游义乌辅助器,... 五分钟开挂!越乡游义乌辅助器,新畅游互娱辅助,必备教程-2026最新版本1)越乡游义乌辅助器辅助挂:...
透视私人局!wpk控制牌是真的... 透视私人局!wpk控制牌是真的吗,wpk真吗,方式教程(有挂透视)-哔哩哔哩wpk控制牌是真的吗软件...
第五分钟脚本!蜀山四川小程序有... 第五分钟脚本!蜀山四川小程序有挂吗,多乐辅助app,都是是真的挂(有挂猫腻)-哔哩哔哩1、操作简单,...
辅助透视!wpk透视辅助下载,... 辅助透视!wpk透视辅助下载,hhpoker辅助实战视频,操作教程(有挂工具)-哔哩哔哩1、辅助透视...
八分钟教程!友玩广西辅助,欢聚... 八分钟教程!友玩广西辅助,欢聚水鱼智能辅助app,一贯是有挂(有挂实锤)-哔哩哔哩一、欢聚水鱼智能辅...
透视规律!wepoker免费辅... 透视规律!wepoker免费辅助器,德州私人局脚本,绝活教程(有挂细节)-哔哩哔哩;1、上手简单,内...
四分钟脚本!阿拉透视辅助器,人... 四分钟脚本!阿拉透视辅助器,人人燕赵辅助,其实是真的挂(有挂存在)-哔哩哔哩阿拉透视辅助器辅助器中分...
透视黑科技!约局吧辅助器,aa... 透视黑科技!约局吧辅助器,aapoker怎么提高中牌率,烘培教程(了解有挂)-哔哩哔哩所有人都在同一...