我正在使用Knockout.js来填充一组HTML5 <details>
元素。结构如下:
<div class="items" data-bind="foreach: Playlists">
<details class="playlist-details" data-bind="attr: {id: 'playlist-details-' + $index(), open: isOpen}">
<summary>
<span data-bind="text: name"></span> - <span data-bind="text: count"></span> item(s)
<div class="pull-right">
<button data-bind="click: $parent.play, css: {disabled: count() == 0}, attr: {title: playbtn_title}" class="btn"><i class="icon-play"></i> Play</button>
<button data-bind="click: $parent.deleteList" class="btn btn-danger"><i class="icon-trash"></i> Delete</button>
</div>
</summary>
<div class="list" data-bind="with: items" style="padding-top: 2px;">
...
</div>
</details>
</div>
ViewModel中的数据如下所示:
var VM = {
Playlists: [
{
name: "My Playlist1",
count: 3,
items: [<LIST OF SONG ID'S>],
playbtn_title: "Play this playlist",
isOpen: true
},
{
name: "My Playlist2",
count: 5,
items: [<LIST OF SONG ID'S>],
playbtn_title: "Play this playlist",
isOpen: null
},
{
name: "My Playlist3",
count: 0,
items: [],
playbtn_title: "You need to add items to this list before you can play it!",
isOpen: null
}
]
};
我添加了使用ViewModel的isOpen
属性和attr
绑定(最初描述为open or closed state)来记住详细信息视图的here的功能。
但是,当我单击<summary>
以展开详细信息时,ViewModel不会更新 - 与value
绑定不同,attr
绑定不是双向的。< / p>
如何在属性值更改时让此绑定更新?
我知道浏览器会在元素打开或关闭时触发DOMSubtreeModified
事件,但我不确定我会放在哪里 - 我尝试了几件事(包括.notifySubscribers()
,{ {1}}等)导致循环,其中被更改的属性使事件再次触发,再次更改属性,再次触发事件等。
答案 0 :(得分:1)
使用$
直接播放DOM不是ko
方式: - )
只需为HTML5 details
标签创建一个双向绑定,它的价格很便宜。
ko.bindingHandlers.disclose = {
init: function(element, valueAccessor) {
if (element.tagName.toLowerCase() !== 'details') {
throw "\"disclose\" binding only works on <details> tag!";
}
var value = valueAccessor();
if (ko.isObservable(value)) {
$(element).on("DOMSubtreeModified", function() {
value($(element).prop('open'));
});
}
},
update: function(element, valueAccessor) {
$(element).prop('open', ko.unwrap(valueAccessor()));
}
};
答案 1 :(得分:0)
我最终找到的方式只是让DOMSubtreeModified
&#34;手动&#34;更新值:
$(document).on('DOMSubtreeModified', 'details.playlist-details', function(e) {
var list = ko.dataFor(this);
list.open(this.getAttribute('open'));
});
(不知何故,这不会导致我尝试的更复杂的构造导致循环。)