ホームページ  >  記事  >  バックエンド開発  >  第11回 ベロシティ応用例---ヌル処理

第11回 ベロシティ応用例---ヌル処理

黄舟
黄舟オリジナル
2017-01-17 11:07:391222ブラウズ

何も処理しない場合は、そのまま出力されます
$title

これは私たちが期待しているものではありません

空の文字列を出力したいので、次のようにする必要があります: $!title

// 2Create a Context object
VelocityContextcontext = new VelocityContext();
// 3 Addyou data object to this context
context.put("title",null);
// 4Choose a template
Templatetemplate = Velocity.getTemplate("null.vm");
// 5Merge the template and you data to produce the output
StringWritersw = new StringWriter();
BufferedWriterbufferWriter = new BufferedWriter(sw);
template.merge(context,bufferWriter);
bufferWriter.flush();
System.out.println(sw.toString());
null.vm
$title
=====
$!title

上記は、Velocity---null 処理コンテンツの 11 番目のアプリケーション例です。その他の関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn) に注目してください。


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。