我有一个愚蠢的问题,我唯一的解决方案是一个草率的 hack,现在给我带来了其他问题。
或阅读此处的代码:
HTML:
<input id='1' value='input1' />
<template id='template1'>
<input id='2' value='input2' />
</template>
JS - 项目视图声明:
// Declare an ItemView, a simple input template.
var Input2 = Marionette.ItemView.extend({
template: '#template1',
onRender: function () {
console.log('hi');
},
ui: { input2: '#2' },
onRender: function () {
var self = this;
// Despite not being in the DOM yet, you can reference
// the input, through the 'this' command, as the
// input is a logical child of the ItemView.
this.ui.input2.val('this works');
// However, you can not call focus(), as it
// must be part of the DOM.
this.ui.input2.focus();
// So, I have had to resort to this hack, which
// TOTALLY SUCKS.
setTimeout(function(){
self.ui.input2.focus();
self.ui.input2.val('Now it focused. Dammit');
}, 1000)
},
})
JS - 控制器
// To start, we focus input 1. This works.
$('#1').focus();
// Now, we make input 2.
var input2 = new Input2();
// Now we 1. render, (2. onRender is called), 3. append it to the DOM.
$(document.body).append(input2.render().el);
正如上面所见,我的问题是在渲染()之后我无法将 View 调用集中在其自身上onRender
,因为它尚未附加到 DOM。据我所知,没有其他名为 的事件onAppend
可以让我检测到它何时实际附加到 DOM。
我不想从 ItemView 之外调用焦点。为了我的目的,它必须从内部完成。
有什么好主意吗?
更新
事实证明,onShow()
Marionette.js 中的所有 DOM 附加都调用了它,无论是 CollectionView、CompositeView 还是 Region,但它不在文档中!
谢谢一百万,lukaszfiszer。