速度(测试实例)
如何测试速度模板中给定对象的类。我找不到 instanceof 指令
How can I test the class of a given object in a velocity template. I can't find an instanceof directive
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Java 中,您可以设置此变量
,并在速度模板内执行此操作
($TestClass.isAssignableFrom($myObj.getClass()))
In Java you can set this variable
and inside the velocity template you can do this
($TestClass.isAssignableFrom($myObj.getClass()))
没有instanceof,但您可以获取字符串形式的类名,然后从那里开始:
There is no instanceof, but you can get class name as a string and then go from there: