freemarker遍历map教程
程序员文章站
2023-12-25 18:01:15
freemarker遍历map>
<#list orderlist?keys as key>
${key}...
freemarker遍历map> <#list orderlist?keys as key> ${key} <#list orderlist[key] as book> ${book.bookname} ${book.bookauthor} ${book.bookprice}