Home  >  Article  >  Backend Development  >  The seventh application example of velocity - assigning values ​​in the template

The seventh application example of velocity - assigning values ​​in the template

黄舟
黄舟Original
2017-01-17 11:00:271476browse

velocityThe seventh application example----assignment in the template

//2 Create a Context object

VelocityContext context = newVelocityContext();

//3 Add you data object to this context

context.put("name", "老毕");

//4 Choose a template

Template template =Velocity.getTemplate("template7.vm");

//5 Merge the template and you data toproduce the output

StringWriter sw = new StringWriter();

template.merge(context, sw);

sw.flush();

System.out.println(sw.toString());

template

array assignment

#set($ints=["第一个","第二个","第三个"])

#foreach($entryin $ints)


$entry

#end



===

#set($ints=[1..10])

#foreach($int in $ints)


$int

#end



===



${name}

===============

#set($name="军旗")

$name

===

#set($condition=true)

#set($condition=false)

#if($condition)

established

#else

Not true

#end

====

The above is the seventh application example of velocity----In The content assigned in the template. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn