gpt4 book ai didi

javascript - 更改reactiveVar后MeteorJS运行脚本

转载 作者:行者123 更新时间:2023-12-03 10:04:23 24 4
gpt4 key购买 nike

我有一个助手,可以评估输入中的代码并将其显示在 div 中。现在我想在模板上呈现 {{htmlMarkup}} 后运行脚本。

Template.code.helpers({
htmlMarkup:function(){
$('#some-code').empty();
return input.get();
}
});

问题是 Template.code.onRendered 仅在页面加载时调用一次。渲染标记后如何运行代码?

最佳答案

您可以尝试在模板助手中使用 Tracker.afterFlush :

Template.code.helpers({
htmlMarkup: function(){
$('#some-code').empty();
Tracker.afterFlush(function(){
// your script goes here
});
return input.get();
}
});

关于javascript - 更改reactiveVar后MeteorJS运行脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30427736/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com