<h:outputLabel binding="#{prodId}"
value="#{productManagementBean.product.id}"/>
我想从输出标签中获取#{productManagementBean.product.id}
的值。我尝试过添加绑定并尝试使用.value
方法,但它一直在给我null
。我希望能够像这样传递那个值
<h:commandButton value="Increase"
action="#{productManagementBean.addOne(prodId.value)}"/>
它不起作用,因为prodId.value
总是给我null
。但是当我在网络浏览器中访问该页面时,它确实显示了#{productManagementBean.product.id}
的值。我应该如何获得价值?