나는 aurelia에서 select2 플러그인을 통합하고 있습니다. 아약스 호출로부터받은 데이터를 바인딩하는 동안 문제가 발생합니다. 사용자 정의 요소가 렌더링 된 후 몇 초가 걸립니다. 한 번만 호출되는 부착이 코드에서 aurelia에서 select2 플러그인 통합
import 'select2'
import 'select2/css/select2.css!'
import {
bindable,
bindingMode,
customElement,
inject
} from 'aurelia-framework'
import $ from 'jquery'
@customElement('select2')
@inject(Element)
export class CustomSelect {
@bindable name = null
@bindable({ defaultBindingMode: bindingMode.twoWay }) selected = {}
@bindable options = []
@bindable labelField = "label"
@bindable valueField = "value"
constructor(element) {
this.element = element
}
bind() {
this.isComplexModel = this.options && this.options.length > 1 && (typeof this.options[0] !== "string" && typeof this.options[0] !== "number")
this.translateModel()
this.selectedValue = this.options[0].value
this.selectedValue = !this.selected ? this.selectedValue : this.selected[this.valueField]
}
attached() {
$(this.element).find('select')
.val(this.selectedValue)
.select2()
.on('change', (event) => {
if (this.isComplexModel) {
this.selected = event.currentTarget.selectedOptions[0].model
} else {
this.selected = event.currentTarget.selectedOptions[0].model.value
}
let changeEvent
if (window.CustomEvent) {
changeEvent = new CustomEvent('change', {
detail: {
value: event.target.value
},
bubbles: true
})
} else {
changeEvent = document.createEvent('CustomEvent')
changeEvent.initCustomEvent('change', true, true, {
detail: {
value: event.target.value
}
})
}
$(this.element).val(event.target.value)
this.element.dispatchEvent(changeEvent)
})
}
translateModel() {
if (this.isComplexModel) {
this.options = this.options.map((option) => $.extend(option, {"label": option[this.labelField], "value": option[this.valueField]}))
} else {
this.options = this.options.map((option) => $.extend({}, {"label": option, "value": option}))
}
}
}
<template>
<select name.bind="name" id.bind="name">
<option repeat.for="option of options" value.bind="option.value" model.bind="option">${option.label}</option>
</select>
</template>
옵션의 상태가 변경 될 때이 사용자 정의 요소를 실행할 수있게 만들려면 도움이 필요합니다. 미리 감사드립니다!
예제를 실행하면 오류가 발생합니다. 시나리오를 보여주는 업데이트 된 예제 [here] (https://gist.run/?id=a2986a73fe6e27b68e16c0c285ce03d2)를 추가 할 수 있습니다. – janmvtrinidad