25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

syntax-native.md 1.8 KiB

4 년 전
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # artTemplate 原生 js 模板语法版
  2. ## 使用
  3. 在页面中引用模板引擎:
  4. <script src="dist/template-native.js"></script>
  5. [下载](https://raw.github.com/aui/artTemplate/master/dist/template-native.js)
  6. ## 表达式
  7. ``<%`` 与 ``%>`` 符号包裹起来的语句则为模板的逻辑表达式。
  8. ### 输出表达式
  9. 对内容编码输出:
  10. <%=content%>
  11. 不编码输出:
  12. <%=#content%>
  13. 编码可以防止数据中含有 HTML 字符串,避免引起 XSS 攻击。
  14. ### 逻辑
  15. 支持使用 js 原生语法
  16. <h1><%=title%></h1>
  17. <ul>
  18. <%for(i = 0; i < list.length; i ++) {%>
  19. <li>条目内容 <%=i + 1%> :<%=list[i]%></li>
  20. <%}%>
  21. </ul>
  22. > 模板不能访问全局对象,公用的方法请参见文档[辅助方法](#辅助方法)章节
  23. ### 模板包含表达式
  24. 用于嵌入子模板。
  25. <% include('template_name') %>
  26. 子模板默认共享当前数据,亦可以指定数据:
  27. <% include('template_name', news_list) %>
  28. ## 辅助方法
  29. 使用``template.helper(name, callback)``注册公用辅助方法:
  30. template.helper('dateFormat', function (date, format) {
  31. // ..
  32. return value;
  33. });
  34. 模板中使用的方式:
  35. <%=dateFormat(content) %>
  36. ## 演示例子
  37. * [基本例子](http://aui.github.io/artTemplate/demo/template-native/basic.html)
  38. * [不转义HTML](http://aui.github.io/artTemplate/demo/template-native/no-escape.html)
  39. * [在javascript中存放模板](http://aui.github.io/artTemplate/demo/template-native/compile.html)
  40. * [嵌入子模板(include)](http://aui.github.io/artTemplate/demo/template-native/include.html)
  41. * [访问外部公用函数(辅助方法)](http://aui.github.io/artTemplate/demo/template-native/helper.html)
  42. ----------------------------------------------
  43. 本文档针对 artTemplate v3.0.0 编写