node-template.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. var template = require('../node/template.js');
  2. //console.log(template);
  3. template.config('base', __dirname);// 设置模板根目录,默认为引擎所在目录
  4. template.config('compress', true);// 压缩输出
  5. var html = template('node-template/index', {
  6. title: '国内要闻',
  7. time: (new Date).toString(),
  8. list: [
  9. {
  10. title: '<油价>调整周期缩至10个工作日 无4%幅度限制',
  11. url: 'http://finance.qq.com/zt2013/2013yj/index.htm'
  12. },
  13. {
  14. title: '明起汽油价格每吨下调310元 单价回归7元时代',
  15. url: 'http://finance.qq.com/a/20130326/007060.htm'
  16. },
  17. {
  18. title: '广东副县长疑因抛弃情妇遭6女子围殴 纪检调查',
  19. url: 'http://news.qq.com/a/20130326/001254.htm'
  20. },
  21. {
  22. title: '湖南27岁副县长回应质疑:父亲已不是领导',
  23. url: 'http://news.qq.com/a/20130326/000959.htm'
  24. },
  25. {
  26. title: '朝军进入战斗工作状态 称随时准备导弹攻击美国',
  27. url: 'http://news.qq.com/a/20130326/001307.htm'
  28. }
  29. ]
  30. });
  31. console.log(html);
  32. //console.log(template.cache)