在设置淘汰赛 VM 时,我在 javascript 调用中使用模型时遇到问题。
@model List<AdminGui.Models.Domain>
<script src="http://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.js" type="text/javascript"></script>
<script type="text/javascript">
function ViewModel() {
var self = this;
self.domains = ko.observableArray(
ko.utils.arrayMap(@Model, function(item) {
return new Domain(item.guid, item.description, item.namespaces);
}));
}
我在 ko.utils.arrayMap 调用中遇到 @Model 语法错误。我怀疑可能是我的剃须刀缺少... :)