当我将代码添加到头部时,代码似乎才有效。
<script type="text/javascript" src="http://ad.leadboltmobile.net/show_app_ad.js?section_id=00000000"></script>
我尝试了其他答案,但它们似乎已经过时了流星1.0。
感谢。
答案 0 :(得分:2)
您可以尝试使用jQuery加载JS脚本:
// Meteor startup triggered when DOM is ready
Meteor.startup(function(){
$.getScript("//ad.leadboltmobile.net/show_app_ad.js?section_id=00000000",function(){
// script loaded here !
});
});
答案 1 :(得分:1)
我们可以通过几种方式在meteor中加载js文件
1)使用irlibloader包
Router.route('codeEditor',{
waitOn: function(){
return [IRLibLoader.load('https://some-external.com/javascript.js'), IRLibLoader.load("smthels.js")]
}
});
2)如上所述使用getscript
$.getScript("'https://some-external.com/javascript.js", function() {
//callbcak function
});
我认为,在head部分使用script标签将在所有页面中加载文件
更多信息:http://www.meteorsnippets.com/blog/add-external-scripts-in-meteor