将值传递给方法 onSuccess
Pass a value to method onSucces
我在 java 中使用挂毯,我在一个 tml 文件中有一个循环,每行都有一个按钮。单击按钮时,我需要将行中元素的值传递给 onSuccess() 方法。
我已经在按钮中使用 t: context = "value" 进行了尝试,但它不起作用,我找不到解决方案。
TML:
<tr t:type="Loop" t:source="movieList" t:value="movie">
<td>
<a href="#" t:type="PageLink" t:page="index">
${movie.title}
</a>
</td>
<td>
${movie.score}
</td>
<td>
<form t:type="Form" class="form-horizontal" t:id="deleteMovie">
<button type="submit" t:context="movie.movieId" class="btn btn-primary">
<img src="${context:i/basura.png}" width="25" heigth="25"/>
</button>
</form>
</td>
</tr>
Java方法:
@OnEvent(value = "success", component ="deleteMovie")
Object[] onSuccesFromDeleteMovie(Long movieId) throws InstanceNotFoundException {
movieService.removeMovie(movieId);
return new Object[] {startIndex};
}
它 "doesn't work" 因为您的 button
是一个普通的 HTML 按钮,而不是 Tapestry 组件。在这种情况下 t:context
将呈现为普通 HTML 属性,您可以通过检查结果 HTML.
来验证这一点
为了让 Tapestry 知道你的按钮实际上是一个 Tapestry Submit
组件,你可以在 type
属性中添加 t:
前缀,即:
<button t:type="submit" t:context="movie.movieId" ... />
预见您的下一个问题:从事件处理程序返回 Object[]
将不起作用,因为它不是 supported method return value.
对于这样一个简单的用例,您可以使用带有上下文的普通 EventLink
,您不必提交表单来触发服务器端事件处理程序。
另外,如果您决定在某个时候使用 Ajax,这个 JumpStart's AjaxFormLoop example 可能会有所帮助。
我在 java 中使用挂毯,我在一个 tml 文件中有一个循环,每行都有一个按钮。单击按钮时,我需要将行中元素的值传递给 onSuccess() 方法。 我已经在按钮中使用 t: context = "value" 进行了尝试,但它不起作用,我找不到解决方案。
TML:
<tr t:type="Loop" t:source="movieList" t:value="movie">
<td>
<a href="#" t:type="PageLink" t:page="index">
${movie.title}
</a>
</td>
<td>
${movie.score}
</td>
<td>
<form t:type="Form" class="form-horizontal" t:id="deleteMovie">
<button type="submit" t:context="movie.movieId" class="btn btn-primary">
<img src="${context:i/basura.png}" width="25" heigth="25"/>
</button>
</form>
</td>
</tr>
Java方法:
@OnEvent(value = "success", component ="deleteMovie")
Object[] onSuccesFromDeleteMovie(Long movieId) throws InstanceNotFoundException {
movieService.removeMovie(movieId);
return new Object[] {startIndex};
}
它 "doesn't work" 因为您的 button
是一个普通的 HTML 按钮,而不是 Tapestry 组件。在这种情况下 t:context
将呈现为普通 HTML 属性,您可以通过检查结果 HTML.
为了让 Tapestry 知道你的按钮实际上是一个 Tapestry Submit
组件,你可以在 type
属性中添加 t:
前缀,即:
<button t:type="submit" t:context="movie.movieId" ... />
预见您的下一个问题:从事件处理程序返回 Object[]
将不起作用,因为它不是 supported method return value.
对于这样一个简单的用例,您可以使用带有上下文的普通 EventLink
,您不必提交表单来触发服务器端事件处理程序。
另外,如果您决定在某个时候使用 Ajax,这个 JumpStart's AjaxFormLoop example 可能会有所帮助。