1
editor.on('input', function(e, target) {
console.log(true);
});
editor.getSession().setValue('value'); // How not to handle it in the input event?
如何做到這一點?如何忽略.on('input')事件中的setValue(ace.js)
editor.on('input', function(e, target) {
console.log(true);
});
editor.getSession().setValue('value'); // How not to handle it in the input event?
如何做到這一點?如何忽略.on('input')事件中的setValue(ace.js)
輸入事件在超時後觸發,如果快速進行多項更改,將只觸發一次。 如果您使用更改事件,您可以做
var ignore, changed
editor.on('input', function() { // async and batched
if (changed) console.log(e);
changed = false
});
editor.on('change', function() { // sync for each change
if (!ignore) changed = true
});
ignore = true
editor.getSession().setValue('value');
ignore = false