如何在输入组件中调用带有参数的方法?

发布于 2024-12-06 20:21:29 字数 214 浏览 1 评论 0原文

我想调用一个带有返回字符串参数的方法。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

腹黑女流氓 2024-12-13 20:21:29

假设您有以下内容:

private String someField;

public String getSomeField() {
   return someField;
}

public String setSomeField(String input) {
    someField = input;
}

然后您可以在包含 .xhtml 文件中访问此属性,如下所示:

<p:inputText value="#{nameOfYourManagedBean.someField}" />

好吗?我仍然建议您读一本书或其他东西,因为这是非常基本的东西。

Let's say you have the following:

private String someField;

public String getSomeField() {
   return someField;
}

public String setSomeField(String input) {
    someField = input;
}

Then you can access this property in your .xhtml file which contains the <p:inputText> like this:

<p:inputText value="#{nameOfYourManagedBean.someField}" />

Alright? I'd still recommend you to read a book or something, since this is very basic stuff.

给不了的爱 2024-12-13 20:21:29

谢谢您的回答,
我的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文