所以我有一个时间表列表,我需要为用户显示并显示他或她当前正在执行的时间表,并让他们可以跳上和跳下所述时间表。
我的视图模型看起来像这样
self = this;
self.shifts = ko.observableArray();
self.selectedShifts = ko.observableArray();
//I populate self.shifts here with a WEB API call
//Run through each shift and check if current user is on it and set checked / not checked value for checkbox
ko.utils.arrayForEach(self.shifts(), function(shift) {
//Clear array
self.usersOnShift([]);
//Populate array with all users on the shift
self.usersOnShift = ko.observableArray(WEB API CALL HERE);
var userInShift = ko.utils.arrayFirst(self.usersOnShift(), function(user) {
if (selectedUserId == user.ID) {
return true;
}
});
if (userInShift) {
self.selectedShifts.push(shift.ID);
}
});
ko.applyBindings(self);
我的 HTML 看起来像这样
<div class="simple_overlay" id="shiftOverlay">
<div class="details">
<div data-bind="foreach: shifts">
<div><span class="staff-initials" data-bind="text:wardName"> </span><input type="checkbox" data-bind="value: ID, checked: $root.selectedShifts"/> </div>
</div>
<div>
<a href="#" data-bind="click: updateUserOnShifts">Connect</a>
<a href="#" data-bind="click: closeShiftDialog">Close</a>
</div>
</div>
</div>
我可以看到复选框的值已正确设置为相应班次的 ID。但是,我知道有问题的用户打开的班次没有被检查,我知道 selectedShifts observableArray 包含该值。
不知何故,“检查:$root.selectedShifts”调用/检查不起作用,但我知道它包含正确的值。我究竟做错了什么?