Asp.net MVC json还是Json.net?

我现在正在使用asp.net mvc,并想知道使用内置的Json或者 Json.Net是什么更好的选择我不知道是否有优势超过另一个

另外如果我选择下去Json.Net的路线,那么我应该用稳定版本还是beta 4?我不知道贝塔是不稳定的。

解决方法

你可能有问题 serializing dates with the MVC JSON.我的答案在这个帖子重复下面。

If you are not tied to the MS JSON serializer you Could use Json.NET. It comes with an IsoDateTimeConverter.
This will serialize dates into an 07001 formatted string.

For instance,in our project
serializing myObject is handled via
the following code.

06000

If you decide to take the Json.NET
plunge you’ll also want to grab
07002 as it returns an
ActionResult that can be used in
ASP.NET MVC application. It’s quite
easy to use.

For more info see: 07003

我们目前正在使用Json.NET v3.5 Beta 4,并没有遇到问题。但是,我们还没有真正对我们的系统征税,因为它还没有进入生产阶段。您的里程可能会因您使用的框架多少而有所不同。

希望这可以帮助。

相关文章

这篇文章主要讲解了“WPF如何实现带筛选功能的DataGrid”,文...
本篇内容介绍了“基于WPF如何实现3D画廊动画效果”的有关知识...
Some samples are below for ASP.Net web form controls:(fr...
问题描述: 对于未定义为 System.String 的列,唯一有效的值...
最近用到了CalendarExtender,结果不知道为什么发生了错位,...
ASP.NET 2.0 page lifecyle ASP.NET 2.0 event sequence cha...