nashron Arttemplate

阅读更多
load("http://aui.github.io/artTemplate/dist/template.js");
var source = "{{if isAdmin}}

{{title}}

    {{each list as value i}}
  • 索引 {{i + 1}} :{{value}}
  • {{/each}}
{{/if}}"; var data = {title: '基本例子',isAdmin: true,list: ['文艺', '博客', '摄影', '电影', '民谣', '旅行', '吉他']}; var render = template.compile(source); var html = render(data);

你可能感兴趣的:(nashron Arttemplate)