gpt4 book ai didi

css - 在 ASP.NET MVC 的 View 中显示格式化的 JSON

转载 作者:数据小太阳 更新时间:2023-10-29 01:48:47 27 4
gpt4 key购买 nike

有没有办法格式化 JSON 以显示在 View 中?这样,当我添加新属性时,我的 API 文档会自动更新吗?额外的功劳是用 CSS 围绕某些元素来设置样式。我也想对 XML 执行此操作。

class Student 
{
static CreateEmpty()
{
return new Student() {
FirstName: 'Mike',
LastName: 'Flynn',
Classes: new List<Class>(),
School: new School() {
Name: 'High School'
}
}
}
}


<code>
@(Student.CreateEmpty().ToJSON())
</code>

<code>

{
FirstName: 'Mike',
LastName: 'Flynn',
Classes: [],
School: {
Name: 'High School'
}
}

</code>

最佳答案

你可以使用 JSON.NET支持控制JSON格式和缩进:

<pre>@Html.Raw(JsonConvert.SerializeObject(Student.CreateEmpty(), Formatting.Indented))</pre>

关于css - 在 ASP.NET MVC 的 View 中显示格式化的 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12694571/

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