我想使用selectize與aurelia.io 我已經創建的模板shop.html綁定selectize與奧裏利亞
<template>
<input ref="content" type="text" value.two-way="shops" >
</template
我
類店
與adnotation @customElement( '店')我 我想要綁定selectize.js到@Bindable商店
attached() {
var s = $(this.content).selectize({
delimiter: ',',
persist: false,
create: function(input) {
return {
value: input,
text: input
}
}
});}
我使用這個自定義元素與模板的書,像這樣:
<shop shops.two-way="selected.data.bookshops" ></shop>
雙向數據綁定不工作如我所料。 選擇性值只是第一次更新。
我已經完成了。問題在於綁定選擇對象。我想在selectize輸入中實現雙向數據綁定。 –