编辑Sampledata.json的文本内容

时间:2014-08-03 11:47:44

标签: c# development-environment windows-phone-8.1

我正在使用集线器模板创建Windows Phone 8.1应用。在sampledata.json页面中,我无法按照我想要的方式编辑内容。它只允许我以线性形式书写,但我不能列表,标题或在另一行上继续新文本。例如:

 { 
  "UniqueId": "Group-1-Item-1",
  "Title": "Tiger Nuts Juice",
  "Subtitle": "Prep Time:1hr30mins",
  "ImagePath": "Tiger Nuts Juice1.png",
  "Description" : "Item Description: Pellentesque porta, mauris quis  neque tortor ac erat.",
    "Content" : "I can only write in a linear form just like this. The moment I press enter I'll get an error"},
  {

这就是我在运行应用程序时得到的结果:

mscorlib.ni.dll中发生了'System.Exception'类型的异常,但未在用户代码中处理

任何人都可以帮我以列表形式在控制台上显示文字吗?

1 个答案:

答案 0 :(得分:1)

您无法向JSON添加换行符,因为它的JSON无效。 如果您想要编辑数据并使用添加的标记查看这些更改,请不要使用JSON。

您可以使Content成为一个新对象,其中包含您想要查看的内容枚举。