我有一个带有input
框列表的新Angular 2应用程序。当用户按下回车键时,我会input
在他们当前正在编辑的框之后立即添加一个新框。或者,我(异步)向模型中的数组添加一个新条目,这导致Angular 2input
在不久的将来自动生成一个新盒子。
如何使input
焦点自动更改为新添加的元素?
编辑1:
或者,我得到对导致DOM生成的模型对象的引用。从组件代码中,有没有一种方法可以搜索表示特定模型对象的DOM元素?
编辑2:
这是我的代码,以使这项工作。希望这对某些Angular 2开发人员来说足够令人反感,以鼓励他们回复:-)
app.WordComponent = ng.core
.Component({
selector: 'word-editor',
template:'<input type="text" [value]="word.word" (input)="word.update($event.target.value)" (keydown)="keydown($event)"/>',
styles:[
''
],
properties:[
'list:list',
'word:word'
]
})
.Class({
constructor:[
function() {
}
],
keydown:function(e) {
if(e.which == 13) {
var ul = e.target.parentNode.parentNode.parentNode;
var childCount = ul.childNodes.length;
this.list.addWord("").then(function(word) {
var interval = setInterval(function() {
if(childCount < ul.childNodes.length) {
ul.lastChild.querySelector('input').focus();
clearInterval(interval);
}
}, 1);
});
}
}
});
setInterval
最有可能只是一个setTimeout
。