0

我正在构建一个简单的 NVelocity 模板,但我不知道如何测试变量是否存在——在这个例子中,我想测试上下文是否包含一个名为 callwed User 的属性。

我知道我可以实现与被黑的 foreach 循环相同的功能,但我想知道是否有更好的方法。

Velocity.Init();

VelocityContext context = new VelocityContext();
context.Put("from", "somewhere");
context.Put("to", "someone");
context.Put("subject", "Welcome to NVelocity");


String s = @"From: $from To: $to Subject: 
#if($context.ContainsKey('User'))
    We Have a User
#else
    No User Found
#end";

var sw = new System.IO.StringWriter();
Velocity.Evaluate(context, sw, "", s);

string merged = sw.ToString();
4

1 回答 1

0

上下文本身不是上下文的一部分,因此$context不起作用。您可以像这样检查是否存在:

#if ($user)
  we have a user
#else
  no user found
#end
于 2010-06-25T13:01:39.540 回答