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.
 
 
 
 
 
 

16 lines
255 B

  1. /**
  2. * 添加模板辅助方法
  3. * @name template.helper
  4. * @param {String} 名称
  5. * @param {Function} 方法
  6. */
  7. template.helper = function (name, helper) {
  8. helpers[name] = helper;
  9. };
  10. var helpers = template.helpers = utils.$helpers;