无废话Cheetah

Cheetah是python的模板框架. 成熟度和效率都很不错.
下面记录一些使用Cheetah进行web开发的常用语句.

变量替代
  1. 我的名字叫 $name
  2. $staff.address.roadname
  3. #如果混合...
  4. 他是个${desease}患者.
  5. #两个变量在一起也可以.
  6. $foo$bar

if判断
  1. #if $keywords
  2.     $keywords
  3. #else
  4.     There are no keywords!
  5. #end if
else是可选的:
  1. #if $keywords
  2.     <span class=keywords>$keywords</span>
  3. #end if

循环
  1. #for $author in $authors
  2.     $author.person.fullName
  3. #end for

文件包含

  1. $name
  2. <p> $content
  3. #include "authors.html"


嵌套
(接上例)

  1. #if $authors
  2.     <table class=Author>
  3.     #for $author in $authors
  4.         <tr class=Author> <td class=Author>
  5.             $author
  6.         </td> </tr>
  7.     #end for
  8.     </table>
  9. #end if
#slurp
  1. #set sep = ''
  2. #for $author in $authors
  3. ${sep}${author.person}#slurp
  4. #set sep = ', '
  5. #end for






你可能感兴趣的:(框架,web开发,python)