有可能做到:
jsf代码(伪):
... <f:param name="arg" value="document.getElementById('naming').text()"> <h:inputText id="naming"></h:inputText> ...
我的意思是接近,当< f:param>用JS设置.
这是不好的做法吗?
感谢帮助.
解决方法
您需要使用a4j的commandButton和actionParam才能将动态参数传递回服务器.
此外,您需要bean上的一个属性来接收param值.
例:
<a4j:commandButton action="#{myBean.action}" value="Submit!"> <a4j:actionParam name="arg" noEscape="true" value="getTheValue()" assignTo="#{myBean.myBeanArg}" /> </a4j:commandButton>
这里myBean.myBeanArg将接收javascript函数getTheValue()返回的值.
注意noEscape =“true”属性.这是必需的,因为否则内部值的数据将用单引号括起来并进行转义,从而导致无法执行javascript.如documentation所述:
It is possible to use JavaScript expression or function in the “value”
attribute. In this case the “noEscape” attribute should be set to
“true”. The result of this JavaScript invocation is sent to the server
as a value of<a4j:actionparam>
.