我遇到了可绑定变量和jQuery插件的问题。我已经测试了这段代码,而且可绑定的var没有改变:
<template>
<input id="my-input" value.bind="inputvalue" type="text">
</template>
class MyClass {
@bindable inputvalue;
constructor() {
this.inputvalue = 'First value'
}
bind() {
setTimeout(() => {
$('#my-input').val('Some value').change();
// In the input element the value now is 'Some value',
// but in bindable var this.inputvalue the value still is 'First value'
}, 4000);
}
}