你能夠建立本身的自定義綁定 – 沒有必要非要使用內嵌的綁定(像click,value等)。你能夠你封裝複雜的邏輯或行爲,自定義很容易使用和重用的綁定。例如,你能夠在form表單裏自定義像grid,tabset等這樣的綁定。javascript
重要:如下文檔只應用在Knockout 1.1.1和更高版本,Knockout 1.1.0和之前的版本在註冊API上是不一樣的。html
註冊你的綁定java
添加子屬性到ko.bindingHandlers來註冊你的綁定:app
ko.bindingHandlers.yourBindingName = {
init: function(element, valueAccessor, allBindingsAccessor, viewModel) {
// This will be called when the binding is first applied to an element
// Set up any initial state, event handlers, etc. here
},
update: function(element, valueAccessor, allBindingsAccessor, viewModel) {
// This will be called once when the binding is first applied to an element,
// and again whenever the associated observable changes value.
// Update the DOM element based on the supplied values here.
}
};
… 而後就能夠在任何DOM元素上使用了:less
<div data-bind="yourBindingName: someValue"> </div>
注:你實際上不必把init和update這兩個callbacks都定義,你能夠只定義其中的任意一個。ide
update 回調函數
當管理的observable改變的時候,KO會調用你的update callback函數,而後傳遞如下參數:post
例如,你可能想經過 visible綁定來控制一個元素的可見性,可是你想讓該元素在隱藏或者顯示的時候加入動畫效果。那你能夠自定義本身的綁定來調用jQuery的slideUp/slideDown 函數:動畫
ko.bindingHandlers.slideVisible = {
update: function(element, valueAccessor, allBindingsAccessor) {
// First get the latest data that we're bound to
var value = valueAccessor(), allBindings = allBindingsAccessor();
// Next, whether or not the supplied model property is observable, get its current value
var valueUnwrapped = ko.utils.unwrapObservable(value);
// Grab some more data from another binding property
var duration = allBindings.slideDuration || 400;
// 400ms is default duration unless otherwise specified
// Now manipulate the DOM element
if (valueUnwrapped == true)
$(element).slideDown(duration); // Make the element visible
else
$(element).slideUp(duration); // Make the element invisible
}
};
而後你能夠像這樣使用你的綁定:url
<div data-bind="slideVisible: giftWrap, slideDuration:600">You have selected the option</div>
<label><input type="checkbox" data-bind="checked: giftWrap"/> Gift wrap</label>
<script type="text/javascript">
var viewModel = {
giftWrap: ko.observable(true)
};
ko.applyBindings(viewModel);
</script>
固然,看來可能代碼不少,可是一旦你建立了自定義綁定,你就能夠在不少地方重用它。
init 回調
Knockout在DOM元素使用自定義綁定的時候會調用你的init函數。init有兩個重要的用途:
KO會傳遞和update回調函數同樣的參數。
繼續上面的例子,你能夠像讓slideVisible在頁面第一次顯示的時候設置該元素的狀態(可是不使用任何動畫效果),而只是讓動畫在之後改變的時候再執行。你能夠這樣來作:
ko.bindingHandlers.slideVisible = {
init: function(element, valueAccessor) {
var value = ko.utils.unwrapObservable(valueAccessor());
// Get the current value of the current property we're bound to
$(element).toggle(value);
// jQuery will hide/show the element depending on whether "value" or true or false
},
update: function(element, valueAccessor, allBindingsAccessor) {
// Leave as before
}
};
這就是說giftWrap的初始值聲明的是false(例如giftWrap: ko.observable(false)),而後讓初始值會讓關聯的DIV隱藏,以後用戶點擊checkbox的時候會讓元素顯示出來。
DOM事件以後更新observable值
你已經值得了如何使用update回調,當observable值改變的時候,你能夠更新相關的DOM元素。可是其它形式的事件怎麼作呢?好比當用戶對某個DOM元素有某些action操做的時候,你想更新相關的observable值。
你可使用init回調來註冊一個事件句柄,這樣能夠改變相關的observable值,例如,
ko.bindingHandlers.hasFocus = {
init: function (element, valueAccessor) {
$(element).focus(function () {
var value = valueAccessor();
value(true);
});
$(element).blur(function () {
var value = valueAccessor();
value(false);
});
},
update: function (element, valueAccessor) {
var value = valueAccessor();
if (ko.utils.unwrapObservable(value))
element.focus();
else
element.blur();
}
};
如今你能夠經過hasFocus綁定來讀取或者寫入這個observable值了:
<p>Name: <input data-bind="hasFocus: editingName"/></p>
<!-- Showing that we can both read and write the focus state -->
<div data-bind="visible: editingName">You're editing the name</div>
<button data-bind="enable: !editingName(), click:function() { editingName(true) }">Edit name</button>
<script type="text/javascript">
var viewModel = {
editingName: ko.observable()
};
ko.applyBindings(viewModel);
</script>