>  기사  >  Java  >  PlayFramework는 APP를 완벽하게 구현합니다. (10)

PlayFramework는 APP를 완벽하게 구현합니다. (10)

黄舟
黄舟원래의
2016-12-23 16:48:161483검색

1. 댓글 목록 사용자 정의

새 댓글 목록 페이지 추가 및 명령줄 실행

> 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}

#{/crud.custom}
#{/crud.table}

PlayFramework는 APP를 완벽하게 구현합니다. (10)

2. 게시물 양식 사용자 정의

>play crud:ov --template Posts/show

 

수정 #{crud.form / }

#{ crud.form}
                                                                                                        ;style type="text/CSS">
.tags-list .tag {
.tags -list .selected {
배경: #222;
색상: #fff;
}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.