Tapestry 4,从非组件元素获取提交的值
我的表单有一个如下所示的自定义元素,使用自定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,您的表单元素不是由 Tapestry 生成的,而是由其他东西生成的。
首先,
jwcid
在 HTML 代码中没有位置,它仅在 Tapestry 组件模板中使用。其次,select
元素必须有一个name
属性,否则浏览器根本不会提交它:要在服务器端获取提交的值,请使用
页面/组件类中的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, theselect
element must have aname
attribute or else your browser won't submit it at all:To get the submitted value on the server side, use
cycle.getParameter("name-of-element")
in your page/component class.