在进行一些搜索后没有找到任何东西。
我想知道是否
asmx WebService
序列化DateTime
到json
的方式吗? /Date(millis)/
格式? 答案 0 :(得分:1)
我不知道如何做到这一点,但一种解决方案是使用double
值(如果你对小数毫秒不感兴趣,可能long
)包含总数自UnixEpoch以来的毫秒数。您可以使用类似的辅助类:
public static class DateTimeExtensions
{
public static readonly DateTime UnixEpoch = new DateTime(1970, 1, 1);
public static double ToUnixTime(this DateTime dateTime)
{
return (dateTime - UnixEpoch).TotalMilliseconds;
}
...
}