作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在 index.xhtml 上有一个数据
<h:dataTable style="border: solid 2px black;"
value="#{IndexBean.bookList}" var="item"
binding="#{IndexBean.datatableBooks}">
<h:column>
<h:commandButton value="Edit" actionListener="#{IndexBean.editBook}">
<f:param name="index" value="#{IndexBean.datatableBooks.rowIndex}"/>
</h:commandButton>
</h:column>
</h:dataTable>
我的 bean :
@ManagedBean(name="IndexBean")
@ViewScoped
public class IndexBean implements Serializable {
private HtmlDataTable datatableBooks;
public HtmlDataTable getDatatableBooks() {
return datatableBooks;
}
public void setDatatableBooks(HtmlDataTable datatableBooks) {
this.datatableBooks = datatableBooks;
}
public void editBook() throws IOException{
int index = Integer.parseInt(FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get("index").toString());
System.out.println(index);
}
}
我的问题是,即使我点击了不同的编辑按钮,我在服务器日志中总是得到相同的索引。假设有一个集合提供给数据表。我没有在 bean 中显示它。
如果我将范围从 ViewScope 更改为 RequestScope,它工作正常。 @ViewScoped
可能有什么问题?提前致谢:)
编辑:
<h:column>
<h:commandButton value="Edit" actionListener="#{IndexBean.editBook}" />
</h:column>
public void editBook(ActionEvent ev) throws IOException{
if (ev.getSource() != null && ev.getSource() instanceof HtmlDataTable) {
HtmlDataTable objHtmlDataTable = (HtmlDataTable) ev.getSource();
System.out.println(objHtmlDataTable.getRowIndex());
}
}
最佳答案
您已经绑定(bind)了 <h:dataTable>
bean 的组件。您需要做的就是:
public void editBook() throws IOException{
int index = datatableBooks.getRowIndex(); // Actually not interesting info.
Book book = (Book) datatableBooks.getRowData(); // This is what you want.
}
<f:param>
这里也不需要。有关更多提示,请参阅 this article .
更新:我可以重现您的问题。这可能是 @ViewScoped
的错误.当 bean 设置为 @RequestScoped
,它按预期工作。此外,当您删除组件绑定(bind)并自己从 viewroot 获取组件时,它会按预期工作。我已经提交了 issue 1658关于这个。
关于java - 如何在 JSF 数据表中获取选定的行索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2779320/
我是一名优秀的程序员,十分优秀!