如何在ember.js中隐藏5s的按钮
这是我的模板activation.hbs
{{#if hideResendCode}}
{{#paper-button raised=true primary=true}}Resend Code{{/paper-button}}
{{/if}}
这是我的控制器activation.js
hideResendCode:Ember.run.later((function() {
}), 5000),
我不知道如何隐藏这个按钮5s请帮助我。
答案 0 :(得分:0)
您需要在init
中运行调度程序。
{{#if showResendCode}}
{{#paper-button raised=true primary=true}}Resend Code{{/paper-button}}
{{/if}}
和
//activation.js
showResendCode: true,
init(){
this._super(...arguments);
Ember.run.later(this, function() {
this.set('showResendCode', false);
}, 5000);
}