当前位置: 首页 > 工具软件 > VTemplate > 使用案例 >

C# VTemplate 模板引擎 在模板中自定义值 在if中应用--- vt:set标签的应用。

司马念
2023-12-01

在模板中定义一个参数。使用<vt:set>标签 读取改参数的值,进行判断

<vt:set var="r" value="$OfficePic" />
  <vt:if var="r" value="" compare="=">
<div class="officbglist">
   <div class="officbgtitle">{$Title} </div>
</div>

<vt:else />
<img  src="{$OfficePic}" style="width:100%"/>
  </vt:if>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> 测试变量表达式 </title>
</head>
<body>
<table width="100%" border="1">
<tr>
  <td>Id</td>
  <td>姓名</td>
  <td>等级</td>
  <td>城市</td>
  <td>省份</td>
</tr>
<vt:foreach from="$users" item="user">
<!--vt[调用GetUserProfile方法共有两种方法,可以用<vt:set>,<vt:function>标签调用
方法1: <vt:function var="profile" method="GetUserProfile" type="$this" userid="$user.id" />
方法2: <vt:set var="profile" value="$this.GetUserProfile()" userid="$user.id" />

以上方法中,较直观的就是<vt:set>标签,所以也是推荐使用的。
]-->
<vt:set var="profile" value="$this.GetUserProfile()" userid="$user.id" />
<tr>
  <td>{$:user.id}</td>
  <td>{$:user.name}</td>
  <td>{$:profile.level}</td>
  <td>{$:profile.city}</td>
  <td>{$:profile.Province}</td>
</tr>
</vt:foreach>
</table>
</body>
</html>

 

 类似资料: