1.定制Comment列表
新增加Comment list页面,执行命令行
> play crud:ov --template Comments/list
会生成/app/views/Comments/list.html
生成的文件中 #{crud.table /} 是表格的内容,可以替换为一下内容,显示更多的列
#{crud.table fields:['content', 'post', 'author'] /}
如果要对某一列的内容进行处理
#{crud.table fields:['content', 'post', 'author']}
#{crud.custom 'content'}
${object.content.length() > 50 ? object.content[0..50] + '…' : object.content}
#{/crud.custom}
#{/crud.table}
2.定制Post表单
>play crud:ov --template Posts/show
修改#{crud.form /}
#{crud.form}
#{crud.custom 'tags'}
以上就是PlayFramework完整实现一个APP(十)的内容,更多相关内容请关注PHP中文网(www.php.cn)!