You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /**
- * 渲染模板
- * @name template.render
- * @param {String} 模板
- * @param {Object} 数据
- * @return {String} 渲染好的字符串
- */
- template.render = function (source, options) {
- return compile(source)(options);
- };
-
|