假设我们有一个接受一个参数的简单页面:
<f:viewParam name="name" value="#{bean.name}"/>
当用户转到 时http://localhost/myapp/?name=Joe
,则#{bean.name}
设置为Joe
。然后,如果用户转到http://localhost/myapp/
or http://localhost/myapp/?something=Else
,则#{bean.name}
仍设置为Joe
,但我希望它是null
。如何做到这一点?