Reading model objects mapped in Velocity Templates

人盡茶涼 提交于 2019-12-10 16:11:29

问题


I have a Struts + Velocity structure like for example, a Person class, whose one property is a Car object (with its own getter/setter methods) and it is mapped to a Velocity form that submits to an Action, using ModelDriven and getModel structure.

I what to put a button on the form that shows "View Car" if car property is not null or car.id != 0 or show another button "Choose Car" if car is null or car.id = 0.

How do I code this. I tried something like that in the template file:

#if($car != null)
  #ssubmit("name=view" "value=View Car")
#else
  #ssubmit("name=new" "value=Choose Car")
#end

But I keep getting error about Null value in the #if line.

I also created a boolean method hasCar() in Person to try, but I can't access it and I don't know why.

And Velocity + Struts tutorials are difficult to find or have good information.

Thanks


回答1:


You should change the #if line to:

#if($car)



回答2:


In the upcoming Velocity 1.6 release, you will be able to do #if( $car == $null ) without error messages. This will allow you to distinguish easily between when $car is null and when it is false. To do that now requires #if( $car && $car != false ), which just isn't as friendly.



来源:https://stackoverflow.com/questions/24495/reading-model-objects-mapped-in-velocity-templates

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!