JSON.NET 字符串到 JSON Javascript
我决定使用 JSON.Net 将日期/时间对象转换为字符串 new Date(ticks)。我本来打算使用 jQuery 的 $.parseJSON 将日期字符串转换为对象,但它抛出一个异常,指出该字符串是无效的 JSON。
还有其他建议吗?
I've decided to use JSON.Net to convert my Date/Time objects into the string new Date(ticks). I was going to use jQuery's $.parseJSON to turn the date string into an object but it throws an exception saying that the string is invalid JSON.
Any other recommendations?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MS 失败了。我自己也遇到过这个。
最好的选择是获取底层核心值(整数)并将其传递出去。然而,您需要对其进行特定的格式化,以将其转换为客户端的日期,但这就像创建一个新的 Date(data.json_net_date); 一样简单。
MS dropped the ball on that one. I've run into this myself.
The best bet is to get the underlying core value (integer) and pass that through. You'll need to do specific formatting on it to turn it into a date on the client-side however, but it is as simple as making a new Date(data.json_net_date);
在这种情况下,无法看到 EVAL 将如何影响安全性,因为我是发送从 DB DateTime 字段创建的统一字符串的人。
Failing to see how the EVAL will affect security in this situation since I am the one sending a uniform string created from a DB DateTime field.