假设我的旧HTML文件中有以下脚本,我想将其移植到流星
<script>
//recursivly go through JSON file
function recursiveGetProperty(obj, lookup, callback) {
for (property in obj) {
if (property == lookup) {
callback(obj[property]);
} else if (obj[property] instanceof Object) {
recursiveGetProperty(obj[property], lookup, callback);
}
}
}
</script>
我想在index.js
下加入 /client
index.html
index.js
我尝试用Template.index.events {}包装脚本,但它似乎对我不起作用。
任何帮助将不胜感激
答案 0 :(得分:0)
请勿使用<script>
标记。只需将您的功能粘贴到index.js
,就可以了。