Tapestry 4,从非组件元素获取提交的值

发布于 2024-08-26 20:14:04 字数 401 浏览 3 评论 0原文

我的表单有一个如下所示的自定义元素,使用自定义 ajax 创建:

<select jwcid="testtest <at> Any">
<option value="x">California -- CA</option>
<option value="y">Colorado -- CO</option>
<option value="z">Connecticut -- CN</option>
</select>

提交表单后,如何获取此自定义 html 元素的值?

cycle.getPage().getComponents().get("testtest")

My form has a custom element like below, created using custom ajax:

<select jwcid="testtest <at> Any">
<option value="x">California -- CA</option>
<option value="y">Colorado -- CO</option>
<option value="z">Connecticut -- CN</option>
</select>

After the form is submitted, how do I get the value of this custom html element?

cycle.getPage().getComponents().get("testtest") ?

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

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

发布评论

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

评论(1

§对你不离不弃 2024-09-02 20:14:04

如果我理解正确的话,您的表单元素不是由 Tapestry 生成的,而是由其他东西生成的。

首先,jwcid 在 HTML 代码中没有位置,它仅在 Tapestry 组件模板中使用。其次,select元素必须有一个name属性,否则浏览器根本不会提交它:

<select name="name-of-element">
...
</select>

要在服务器端获取提交的值,请使用页面/组件类中的cycle.getParameter("name-of-element")

If I understand you correctly, you have a form element generated not by Tapestry, but by something else.

First of all, jwcid has no place in your HTML code, it's only used in Tapestry component templates. Second, the select element must have a name attribute or else your browser won't submit it at all:

<select name="name-of-element">
...
</select>

To get the submitted value on the server side, use cycle.getParameter("name-of-element") in your page/component class.

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