Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
抱歉,这是一个懒惰的问题......
我很好奇 $DateTime.Now.Year 是否可以与 NVelocity 模板一起使用来显示当前年份?还是我需要设置一个变量?
不,据我所知,NVelocity 模板仅适用于 VelocityContext 中设置的对象。
但是将自定义对象添加到上下文中然后在模板中使用它们是没有问题的。
_context = new VelocityContext(); _context.Put("your_key", your_object);