我是根据官方的栗子来学习的但是出现了一个问题我想用helper注册一个方法但是总是提示template.helper is not a function不知是我调用时有问题还是引入的js有问题代码如下<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>arttemplate</title> <script src="template-web.js"></script></head><body> <div id="content3"></div> <script id="test3" type="text/html"> //<p>{{add(1,2)}}</p> <p>{{add:'1,2'}}</p> </script></body><script> template.helper('add',function(val1,val2){ return val1 + val2; }); //var data3 = { //list: [32,45,47,61,52,41,32,29,44,24,55,19] //} var html = template('test3'); document.getElementById('content3').innerHTML = html;</script></html>
添加回答
举报
0/150
提交
取消