无法从 spring、web-flow 获取价值

发布于 2024-10-07 03:12:56 字数 598 浏览 3 评论 0原文

我是 spring 框架和 web-flow 的新手, 我试图获取文本区域的值,但仍然无法获取。 在我的 someFlow.xml 文件中,我用
声明了我的变量

在我的 xhtml 页面中,文本区域定义如下:
< /code>

当我输入时 <代码>

变量 varName 为空,但是当我输入时 <代码> <评估表达式=“someClass.someMethod('some Text')”/> 我可以得到文字。

问题出在哪里?

为什么我无法从文本区域获取值

I'm a newbie in spring framework and web-flow,
I'm trying to get the value of a textarea, but still couldn't get it.
in my someFlow.xml file I declared my variable with
<var name="varName" class="java.lang.String"/>

in my xhtml page the textarea is defined as follows:
<injsf:inputtextarea id="richText_varName" label="#{lbl.textarea}" rows="1" size="50" required="true" value="#{varName}"/>

when I type

<evaluate expression="someClass.someMethod(varName)"/>

the variable varName is blank, but when I type

<evaluate expression="someClass.someMethod('some Text')"/>

I can get the text.

what sould be the problem?

why I cant get the value from the textarea

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

荆棘i 2024-10-14 03:12:56

谢谢 Bozho,你的评论让我有不同的想法 :)

组件我应该用 entityValue 获取值,而不仅仅是

<injsf:inputtextarea id="richText_aciklama" label="#{lbl.label.gnl.aciklama}" rows="1" size="50" required="true" entityValue="#{fh.aciklama}"/>

Thank you Bozho, your comment let me think different :)

from the <injsf:textarea> component I was supposed to get the value with entityValue, not just value

<injsf:inputtextarea id="richText_aciklama" label="#{lbl.label.gnl.aciklama}" rows="1" size="50" required="true" entityValue="#{fh.aciklama}"/>

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