我找不到如何在我的 xamarin 项目中使用 json 格式
Posted
技术标签:
【中文标题】我找不到如何在我的 xamarin 项目中使用 json 格式【英文标题】:I cant found how to use json format in to my xamarin project 【发布时间】:2021-05-29 14:53:16 【问题描述】:对不起各位。我真的是编程的新手。我必须用 json 格式数据制作一个程序。但我找不到如何在我的 xamarin 表单中使用它或如何包含我的程序。
这是我的 json 数据。我将它粘贴到https://json2csharp.com 并使用它。 但我不知道如何使用它。例如,在标签中,我需要从该 json 数据中获取名称信息。就像我说的那样,我真的是新手,但我在网络或 *** 中找不到任何示例,你能帮帮我吗?谢谢大家
【问题讨论】:
那里有 数千个 示例 - 快速搜索“xamarin json”会返回很多热门结果。如果您不理解某些特定步骤,请发布您目前拥有的代码并询问该特定问题。 【参考方案1】:您可以按照以下步骤操作:
1.安装 Newtonsoft.Json nuget 包。
2.创建模型类,例如:
public class MyInfor
public int ID get; set;
public string Name get; set;
public string Barcode get; set;
... // define the variables which the name is same as the key in your json data
3.将您的 json 数据转换为您定义的模型。
string json = "your json string";
MyInfor myInfor = JsonConvert.DeserializeObject<MyInfor>(json);
label.Text = myInfor.Name;
【讨论】:
兄弟,我非常爱你,我只是从你的评论中得到它,非常感谢你以上是关于我找不到如何在我的 xamarin 项目中使用 json 格式的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Xamarin.Android 应用上集成新的 Google 登录?