在某些情况下,timelsot的列表在天下列出,并且此数据动态地来自服务器。现在,用户应选择给定日期的所有时隙。类似于fiddle中的内容。我正在尝试遵循knockout documentation上的示例,但是在此示例中,标题复选框不是动态的。以同样的方式如何维护多个列表的引用?
<ul class="header" data-bind="foreach: days">
<li>
<label>
<input type="checkbox" data-bind="attr: { id: 'chk' + id }"/>
<span data-bind="text: name"></span>
</label>
<ul data-bind="foreach: timeslots">
<li>
<label>
<input type="checkbox" data-bind="attr: { id: 'chk' + id }"/>
<span data-bind="text: name"></span>
</label>
</li>
</ul>
</li>
function MyViewModel() {
this.days = ko.observableArray([
{ name:"Sunday", id:1 , timeslots : [{ name:"10:00 - 11:00", id:10},{ name:"10:00 - 11:00", id:11},{ name:"10:00 - 11:00", id:12}] },
{ name:"Monday", id:2 , timeslots : [{ name:"10:00 - 11:00", id:20},{ name:"10:00 - 11:00", id:21},{ name:"10:00 - 11:00", id:22}] },
{ name:"Tuesday", id:3 , timeslots : [{ name:"10:00 - 11:00", id:30},{ name:"10:00 - 11:00", id:31},{ name:"10:00 - 11:00", id:32}] },
{ name:"Wednesday", id:4 , timeslots : [{ name:"10:00 - 11:00", id:40},{ name:"10:00 - 11:00", id:41},{ name:"10:00 - 11:00", id:42}] },
{ name:"Thursday", id:5 , timeslots : [{ name:"10:00 - 11:00", id:50},{ name:"10:00 - 11:00", id:51},{ name:"10:00 - 11:00", id:52}] },
{ name:"Friday", id:6 , timeslots : [{ name:"10:00 - 11:00", id:60},{ name:"10:00 - 11:00", id:61},{ name:"10:00 - 11:00", id:62}] },
{ name:"Saturday", id:7 , timeslots : [{ name:"10:00 - 11:00", id:70},{ name:"10:00 - 11:00", id:71},{ name:"10:00 - 11:00", id:72}] }
]);
this.selectedDays = ko.observableArray([
{ id:1 , timeslots : [{ name:"10:00 - 11:00", id:10},{ name:"10:00 - 11:00", id:12}] },
{ id:2 , timeslots : [{ name:"10:00 - 11:00", id:21}] }
]);
}
ko.applyBindings(new MyViewModel());
我要实现的功能是示例2:选择/取消选择敲除文档链接中的所有项目,但是在我的方案中我不怎么实现pureComputed
功能。
答案 0 :(得分:1)
最好将普通对象映射到某种首先具有可观察或计算属性的视图模型。
然后
timeslot
提供一个 observable 布尔checked
属性,day
提供一个可写计算的 checked
属性您日子的write
属性的checked
函数设置了所有内部timeslots
。其read
函数返回是否至少检查了一个时隙 。
最后,您创建一个pureComputed
状态,该状态将视图模型解析回普通的javascript数据结构。为此,我首先过滤掉未选中的日期。然后,对于每天都有被检查时间段的时间,我收集被检查项目的标签。
这里是一个示例,仅抽象为Group
和Item
模型。您应该能够将其转换为自己的格式。让我知道您是否需要更多帮助。
function Item(label) {
this.label = label;
this.checked = ko.observable(false);
}
Item.forLabel = str => new Item(str);
function Group(label, items) {
this.label = label;
this.items = items.map(Item.forLabel);
this.checked = ko.computed({
read: () => this.items.some(i => i.checked()),
write: val => { this.items.forEach(i => i.checked(val)); }
});
}
Group.prototype.toJS = function() {
// Define the format of your selected state here:
return {
label: this.label,
items: this.items
.filter(i => i.checked())
.map(i => i.label)
};
}
const groups = [
new Group("colors", [ "red", "green", "blue" ]),
new Group("directions", [ "up", "down" ])
];
const selection = ko.pureComputed(
() => groups
.filter(g => g.checked())
.map(g => g.toJS())
)
ko.applyBindings({ groups, selection });
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<ul data-bind="foreach: groups">
<li>
<label>
<input type="checkbox" data-bind="checked: checked">
<span data-bind="text: label"></span>
</label>
<ul data-bind="foreach: items">
<li>
<label>
<input type="checkbox" data-bind="checked: checked">
<span data-bind="text: label"></span>
</label>
</li>
</ul>
</li>
</ul>
<pre data-bind="text: JSON.stringify(selection(), null, 4)" style="background: #efefef; padding: 1rem;"></pre>