freemarker常用标签解释遍历

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>学生信息</title>
    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    

  </head>
  
  <body>
          <#list students as student>
                    姓名:${student.studentName}
             性别:${student.studentSex}
             年龄:${student.studentAge}
             生日:${(student.studentBirthday)?string("yyyy-MM-dd")}
            地址:${student.studentAddr}
              QQ:${student.studentQQ}<br/>
          </#list>
  </body>
</html>

 

posted @ 2019-02-20 11:06  菩提树下的丁春秋  阅读(1003)  评论(0编辑  收藏  举报