처리를 하지 않으면 그대로 출력됩니다
$title
이것은 우리가 예상한 것과 다릅니다
빈 문자열을 출력하고 싶기 때문에 이렇게 해야 합니다. this: $!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 중국어 홈페이지(www. php.cn)!