如何在输入组件中调用带有参数的方法?
我想调用一个带有返回字符串参数的方法。
public String MyMethod(Integer param) {
String xx=......;
return xx;
}
我想在
中显示此结果。我该怎么做?我正在使用primefaces。
I want to call a method with parameter that return a string.
public String MyMethod(Integer param) {
String xx=......;
return xx;
}
And I want to display this result in <p:inputText>
. How can I do this? I'm using primefaces.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您有以下内容:
然后您可以在包含
的.xhtml
文件中访问此属性,如下所示:好吗?我仍然建议您读一本书或其他东西,因为这是非常基本的东西。
Let's say you have the following:
Then you can access this property in your
.xhtml
file which contains the<p:inputText>
like this:Alright? I'd still recommend you to read a book or something, since this is very basic stuff.
谢谢您的回答,
我的 classBean 包含 anotherClass 的引用,就像这个
bean user
{....
因此
,当我尝试在 p:inputText 中调用 beanUser.selectedProfil.nameProfil 时,它工作正常。
谢谢
Thank you for your answers,
my classBean contain a reference of anotherClass like this
bean user
{....
Profils idProfil}
So when I've tried to call beanUser.selectedProfil.nameProfil in p:inputText, it works fine.
Thank's