gpt4 book ai didi

c# - 统一解析嵌套的json

转载 作者:太空狗 更新时间:2023-10-30 00:09:59 30 4
gpt4 key购买 nike

<分区>

我在解析这个 json 时遇到问题:

{
"product_info":
{
"title": "Product Name"
}
}

这是我的代码:

using UnityEngine;
using System.Collections;
using System.IO;
using System.Net;
using UnityEngine.UI;

public class ReadJson : MonoBehaviour
{
public Text myText;

[System.Serializable]
public class ProductInfo
{
public string title { get; set; }
}

[System.Serializable]
public class RootObject
{
public ProductInfo product_info { get; set; }
}

void Start () {

TextAsset asset = Resources.Load (Path.Combine ("Json", "toulouse")) as TextAsset;

RootObject m = JsonUtility.FromJson<RootObject> (asset.text);

Debug.Log (m.product_info.title);

}
}

我收到此错误消息:“对象引用未设置为对象的实例”。我已经尝试过,成功地解析了一个未嵌套的 json,但我不明白为什么,但即使在创建了适当的类之后也不起作用。

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com