Files
heima-leadnews/heima-leadnews-test/freemarker-demo/target/classes/templates/01-basic.ftl

16 lines
295 B
Plaintext
Raw Normal View History

2026-01-14 08:37:21 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello World!</title>
</head>
<body>
<b>普通文本 String 展示:</b><br><br>
Hello ${name!'------'} <br>
<hr>
<b>对象Student中的数据展示</b><br/>
姓名:${stu.name}<br/>
年龄:${stu.age}
<hr>
</body>
</html>