我需要在C#代码中创建以下JavaScript对象文字作为字符串,并且正在寻找有关如何最好地执行此操作的一些提示。
model: {
id: "Id",
fields: {
Surname: { type: "string", validation: { required: true } },
FirstName: { type: "string", validation: { required: true } },
PrivateEmail: { type: "string", validation: { required: true } },
DefaultPhone: { type: "string" },
CompanyName: { type: "string" },
CreateDate: { type: "date" },
LastLoginDate: { type: "date" },
IsLockedOut: { type: "boolean" }
}
}
这定义了一个客户端对象,其中包含 model 属性,该属性反映了我的MVC4视图模型中的每一行的外观。我可以使用纯反射来生成字符串文字,但我宁愿在某种程度上利用.NET中已有的JSON序列化服务。为此,我想我需要创建一个匿名对象,其属性对应于上面的JS属性。我怎么能这样做?
修改 我需要遍历视图模型类中的属性并生成一个C#对象,该对象将序列化为视图模型类的JavaScript'transform',类似于上面的那个。
答案 0 :(得分:5)
我认为他可能会问的是将C#对象转换为JSON字符串。
试试这个:
http://msdn.microsoft.com/en-us/library/system.json.jsonobject%28v=vs.95%29.aspx
或
http://james.newtonking.com/pages/json-net.aspx
EDIT(关于如何使用的示例):
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Price = 3.99M;
product.Sizes = new string[] { "Small", "Medium", "Large" };
string json = JsonConvert.SerializeObject(product);
//{
// "Name": "Apple",
// "Expiry": new Date(1230422400000),
// "Price": 3.99,
// "Sizes": [
// "Small",
// "Medium",
// "Large"
// ]
//}
Product deserializedProduct = JsonConvert.DeserializeObject<Product>(json);
修改强>
这是@yyamil的评论:
如果您不想仅仅为了序列化json对象而创建新类,也可以使用匿名对象:
var notificationPayload = new
{
notification = new
{
title = "Title",
body = "body"
}
};
string json = JsonConvert.SerializeObject(notificationPayload);