Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by danieilng21 · Dec 03, 2018 at 04:12 AM · serializationjsonserializable

Firebase Datasnapshot Json to Object using JsonUtility

I have a json from Firebase DataSnapShot using GetRawJsonValue. I have trouble converting it into object using JsonUtility.FromJson>(myjsonfromGetRawJsonValue). The sample json is as following:-

 {"-LRpiJg_RP2re3UY30fG":{"orderslist":[{"Name":"Velvet Cake","Price":"10.9","Qty":1},{"Name":"green tea cake","Price":"8.9","Qty":1},{"Name":"latte","Price":"9.9","Qty":2},{"Name":"americano","Price":"5.9","Qty":2}],"rest_id":"dessert_house","table_number":"123","take_away":false,"user_id":"null"}, "-LRpjHchYhXTa0vY51JX":{"orderslist":[{"Name":"Velvet Cake","Price":10.899999618530273,"Qty":2},{"Name":"green tea cake","Price":8.8999996185302734,"Qty":1},{"Name":"latte","Price":9.8999996185302734,"Qty":2}],"rest_id":"dessert_house","table_number":"123","take_away":false,"user_id":"null"},"-LRplEOFsZ2j3A-aQYT4":{"orderslist":[{"Name":"Velvet Cake","Price":10.9,"Qty":1},{"Name":"latte","Price":9.9,"Qty":2},{"Name":"americano","Price":5.9,"Qty":1}],"rest_id":"dessert_house","table_number":"123","take_away":false,"user_id":"null"}  

The serializable:-

 [Serializable]
 public class Orderslist
 {
     [SerializeField]
     public string Name;
     public double Price;
     public int Qty;
 }
 
 [Serializable]
 public class Orders
 {
     [SerializeField]
     public string user_id;
     public string rest_id;
     public string date_time;
     public bool take_away;
     public string table_number;
     public List<Orderslist> orderslist;

And how to access the children since the object child is System.String using Dictionary?

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image danieilng21 · Dec 03, 2018 at 04:31 AM 0
Share

Just found out JsonUtility doesn't support Dictionary. Any solution either using back JsonUtility or other serializer?

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Bunny83 · Dec 03, 2018 at 04:46 AM

Unity's JsonUtility is only meant to map actual classes and in many cases is not suitable for communicating with arbitary web apis.

You can use my SimpleJSON to parse arbitrary JSON data. Note that your sample data is missing a closing curly bracket at the end.

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image danieilng21 · Dec 03, 2018 at 04:08 PM 0
Share

noted on the curly bracket, miss that one out when copy and paste. Had decided to turn all the key into object using splitting and appending before deserializing.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

101 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

JsonUtility not found / working 0 Answers

Custom Editor: Weird reset when clicking Play 1 Answer

Stop specific fields from being serialized by JSON utility 3 Answers

How to protect JSON file game data? 3 Answers

Json Serialization documentation official Unity website - marking it [Serializable] caused error 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges