Detail:
${_post.content.nl2br()}
程序以及基本可用了,需要继续完善页面
1.创建页面模板
创建文件 app/views/tags/display.html
*{ Display a post in one of these modes: 'full', 'home' or 'teaser' }*
修改index.html
#{extends 'main.html' /}
#{set title:'Home' /}
#{if frontPost}
#{display post:frontPost, as:'home' /}
#{if olderPosts.size()}
2.修改Layout views\main.html
# ~~~ ~~
blog.title=もう一つのブログ
blog.baseline=何も書きません
5. ページスタイルを追加します
CSS: http://play-framework.herokuapp.com/zh/ files/main.css
/public /stylesheets/main.css
に追加
操作効果:
上記は、APP を完全に実装するための PlayFramework の内容です (5) 詳細はこちら。関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn) にご注意ください。
${_post.comments.size() ?: 'no'}
comment${_post.comments.size().pluralize()}
#{list items:_post.comments, as:'comment'}
by ${comment.author},
${comment.postedAt.format('dd MMM yy')}
${comment.content.escape().nl2br()}
#{/list}