admin管理员组文章数量:1352126
I'm trying to do some DOM manipulation on every evaluation of a helper function, {{htmlMarkup}}
. The problem is that when the page loads the helper is triggered before the template has a DOM.
Template.myTemplate.helpers({
htmlMarkup:function(){
var tmpl = Template.instance();
tmpl.$('.code-container').empty();
Tracker.afterFlush(function(){
Prism.highlightElement(tmpl.$('.code-container')[0]);
});
return input.get();
}
});
I will get the error message Exception in template helper: Error: Can't use $ on template instance with no DOM
. I have tried to check if tmpl.firstNode
is undefined but it doesn't work. What is the best way to solve this?
I'm trying to do some DOM manipulation on every evaluation of a helper function, {{htmlMarkup}}
. The problem is that when the page loads the helper is triggered before the template has a DOM.
Template.myTemplate.helpers({
htmlMarkup:function(){
var tmpl = Template.instance();
tmpl.$('.code-container').empty();
Tracker.afterFlush(function(){
Prism.highlightElement(tmpl.$('.code-container')[0]);
});
return input.get();
}
});
I will get the error message Exception in template helper: Error: Can't use $ on template instance with no DOM
. I have tried to check if tmpl.firstNode
is undefined but it doesn't work. What is the best way to solve this?
2 Answers
Reset to default 13We may check if the template is rendered (and thus have a DOM) with the property tmpl.view.isRendered
like this:
var tmpl = Template.instance();
if(tmpl.view.isRendered){
//Do DOM manipulation
}
Try setting a property on the template instance when it's getting rendered, and check if it's true in your helper.
Template.myTemplate.onCreated(function(){
this.isRendered = false;
});
Template.myTemplate.onRendered(function(){
this.isRendered = true;
});
Template.myTemplate.helpers({
htmlMarkup:function(){
var tmpl = Template.instance();
if(!tmpl.isRendered){
return input.get();
}
tmpl.$('.code-container').empty();
//
Tracker.afterFlush(function(){
Prism.highlightElement(tmpl.$('.code-container')[0]);
});
//
return input.get();
}
});
Depending on what you're trying to do, you could also use a Tracker.autorun
inside your Template.onRendered
handler to execute arbitrary code AFTER every input is detected.
Template.myTemplate.onCreated(function(){
this.input = new ReactiveVar("");
});
Template.myTemplate.onRendered(function(){
this.autorun(function(){
var input = this.input.get();
//
this.$(".code-container").empty();
//
Tracker.afterFlush(function(){
Prism.highlightElement(this.$(".code-container")[0]);
});
});
});
Template.myTemplate.events({
"input textarea": function(event, template){
template.input.set(template.$("textarea").val());
}
});
本文标签: javascriptMeteorJS check if template instance has a DOMStack Overflow
版权声明:本文标题:javascript - MeteorJS check if template instance has a DOM - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743910545a2560318.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论