我刚刚开始使用knockout,我在使用JavaScriptSerializer进行DateTime序列化和反序列化时遇到了麻烦。
我在他的博客中更新了Steves koListEditor示例中的礼物模型,以包含Modified DateTime字段:
public class GiftModel
{
public string Title { get; set; }
public double Price { get; set; }
public DateTime Modified { get; set; }
}
然后我更新了Index.aspx以包含新字段:
<asp:Content ContentPlaceHolderID="MainContent" runat="server">
<h1>Gift list editor</h1>
<p>You have asked for <span data-bind="text: gifts().length"> </span> gift(s)</p>
<form class="giftListEditor">
<table>
<tbody data-bind="template: { name: 'giftRowTemplate', foreach: gifts }"></tbody>
</table>
<button data-bind="click: addGift">Add Gift</button>
<button data-bind="enable: gifts().length > 0" type="submit">Submit</button>
</form>
<script type="text/html" id="giftRowTemplate">
<tr>
<td>Gift name: <input class="required" data-bind="value: Title, uniqueName: true"/></td>
<td>Price: \$ <input class="required number" data-bind="value: Price, uniqueName: true"/></td>
<td>Modified: <input class="required date" data-bind="value: Modified, uniqueName: true"/></td>
<td><a href="#" data-bind="click: function() { viewModel.removeGift($data) }">Delete</a></td>
</tr>
</script>
<script type="text/javascript">
var initialData = <%= new JavaScriptSerializer().Serialize(Model) %>;
var viewModel = {
gifts : ko.observableArray(initialData),
addGift: function () {
this.gifts.push({ Title: "", Price: "", Modified:"" });
},
removeGift: function (gift) {
this.gifts.remove(gift);
},
save: function() {
ko.utils.postJson(location.href, { gifts: this.gifts });
}
};
ko.applyBindings(document.body, viewModel);
$("form").validate({ submitHandler: function() { viewModel.save() } });
</script> </asp:Content>
但是当JavaScriptSerializer序列化模型
时var initialData = <%= new JavaScriptSerializer().Serialize(Model) %>;
修改日期如下:
使用英国日期时也是如此。 25/01/2011 JavaScriptSerializer.Deserialize引发以下异常:
25/01/2011不是有效值 日期时间。
虽然我在这里遇到两个问题但主要问题是有没有人成功使用过MVC 2的knockout并让JavaScriptSerializer使用DateTimes?我意识到我可以编写自己的JavaScriptSerializer,但我希望有一个现成的解决方案:)
以下是Steve Sanderson的koListEditor更新版本的代码:
由于
戴夫
答案 0 :(得分:18)
有两种选择。您可以通过使用指定的视图模型对象来执行简单修复,该对象将预先格式化的日期时间值存储为字符串。这通常是我做的。然后我可以尝试使用日期值进行验证。
另一种选择是实现自定义数据绑定。你可以看看here。这将是更优雅的方法。关于这个apporach的好处,你可以在绑定上创建UI生成代码,允许你在过程中向日期添加日期选择器。
答案 1 :(得分:1)
不是一个优雅的解决方案,但它有效:
data-bind="value: eval('new ' + Modified.slice(1,-1)), uniqueName: true"
Eval
可能是一个安全问题。