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.helper
- * @param {String} 名称
- * @param {Function} 方法
- */
- template.helper = function (name, helper) {
- helpers[name] = helper;
- };
-
- var helpers = template.helpers = utils.$helpers;
-
-
-
|