当前位置:   article > 正文

如何利用鸿蒙arkts进行json数据和对象互转-使用JSON库_arkts json

arkts json

1.鸿蒙系统arkts使用JSON库

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

  1. interface JSON {
  2.     /**
  3.      * Converts a JavaScript Object Notation (JSON) string into an object.
  4.      * @param text A valid JSON string.
  5.      * @param reviver A function that transforms the results. This function is called for each member of the object.
  6.      * If a member contains nested objects, the nested objects are transformed before the parent object is.
  7.      */
  8.     parse(text: string, reviver?: (this: anykeystringvalueany=> any): any;
  9.     /**
  10.      * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.
  11.      * @param value A JavaScript value, usually an object or array, to be converted.
  12.      * @param replacer A function that transforms the results.
  13.      * @param space Adds indentation, white spaceand line break characters to the return-value JSON text to make it easier to read.
  14.      */
  15.     stringify(valueany, replacer?: (this: anykeystringvalueany=> anyspace?: string | number): string;
  16.     /**
  17.      * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.
  18.      * @param value A JavaScript value, usually an object or array, to be converted.
  19.      * @param replacer An array of strings and numbers that acts as an approved list for selecting the object properties that will be stringified.
  20.      * @param space Adds indentation, white spaceand line break characters to the return-value JSON text to make it easier to read.
  21.      */
  22.     stringify(valueany, replacer?: (number | string)[] | nullspace?: string | number): string;
  23. }

2.示例

2.1.Json文件
  1. {
  2.     "userInfo":{
  3.       "name":"lili",
  4.       "age":30,
  5.       "address":"北京市",
  6.       "account":"ksnowlv"
  7.     },
  8.     "subscriptions":[
  9.       {
  10.         "title":"Flutter入门指南",
  11.         "subtitle":"从零开始学习Flutter",
  12.         "content":"Flutter是一种用于创建跨平台移动应用程序的开源UI工具包。",
  13.         "subscriptionId":"sub001",
  14.         "likes":100
  15.       },
  16.       {
  17.         "title":"Dart编程语言介绍",
  18.         "subtitle":"学习Dart的基本语法和特性",
  19.         "content":"Dart是一种由Google开发的面向对象、类似Java和JavaScript的新型编程语言。",
  20.         "subscriptionId":"sub002",
  21.         "likes":85
  22.       }
  23.     ]
  24.    }

2.2.Json转换为类

  1. export class MyUser {
  2.     userInfo?: UserInfo
  3.     subscriptions?: Subscriptions[]
  4. }
  5. export class Subscriptions {
  6.     title?: string
  7.     subtitle?: string
  8.     content?: string
  9.     subscriptionId?: string
  10.     likes?: number
  11. }
  12. export class UserInfo {
  13.     name?: string
  14.     age?: number
  15.     address?: string
  16.     account?: string
  17. }

2.3.Json转换为对象

  1.     @State myUserMyUser = null
  2.     try {
  3.         this.myUser = JSON.parse(this.jsonContent);
  4.         const userInfo = this.myUser.userInfo;
  5.         console.info(`${this.TAG} userInfo Name: ${userInfo.name} Age: ${userInfo.age} Address: ${userInfo.address} Account: ${userInfo.account}`)
  6.         const subscriptions = this.myUser.subscriptions;
  7.         subscriptions.forEach((subscription, index) => {
  8.             console.info(`${this.TAG} Subscription ${index + 1}:`);
  9.             console.info(`${this.TAG}  Title: ${subscription.title}`);
  10.             console.info(`${this.TAG}  Subtitle: ${subscription.subtitle}`);
  11.             console.info(`${this.TAG}  Content: ${subscription.content}`);
  12.             console.info(`${this.TAG}  Subscription ID: ${subscription.subscriptionId}`);
  13.             console.info(`${this.TAG}  Likes: ${subscription.likes}`);
  14.         });
  15.     } catch (error) {
  16.         console.error(`${this.TAG} json content:${JSON.stringify(error)}}`)
  17.     }

2.4.对象转换Json

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

3.效果

前端页面显示

日志输出

  1. 05-29 11:32:26.418  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage userInfo Name: lili Age: 30 Address: 北京市 Account: ksnowlv
  2. 05-29 11:32:26.419  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage Subscription 1:
  3. 05-29 11:32:26.419  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Title: Flutter入门指南
  4. 05-29 11:32:26.419  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Subtitle: 从零开始学习Flutter
  5. 05-29 11:32:26.419  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Content: Flutter是一种用于创建跨平台移动应用程序的开源UI工具包。
  6. 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Subscription ID: sub001
  7. 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Likes: 100
  8. 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage Subscription 2:
  9. 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Title: Dart编程语言介绍
  10. 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Subtitle: 学习Dart的基本语法和特性
  11. 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Content: Dart是一种由Google开发的面向对象、类似Java和JavaScript的新型编程语言。
  12. 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Subscription ID: sub002
  13. 05-29 11:32:26.420  20966-7914   0FEFE/JsApp                                        com.example.base_demo                          I  NetPage  Likes: 85
  14. 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学习资料免费领取(安全链接,放心点击

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/771988
推荐阅读
相关标签
  

闽ICP备14008679号