这段在控制台上提示报错,Handlebars未定义
var t = $("#template").html();
console.log(t);
// f是handlebars编译之后生成的函数
var f =Handlebars.compile(t);
console.log(f);
// 参数打他传入之后的HTML的字符串
var h = f(data);
console.log(h);
$("#card3").html("woshi ");
var t = $("#template").html();
console.log(t);
// f是handlebars编译之后生成的函数
var f =Handlebars.compile(t);
console.log(f);
// 参数打他传入之后的HTML的字符串
var h = f(data);
console.log(h);
$("#card3").html("woshi ");
2017-08-18