0

我正在尝试让一个普通的 commandLink 工作。这是页面的代码片段:

<div class="item-single">
    <h:graphicImage value="image/screenshots/#{collectionListBean.collectionListTeaser[0].screenshot}" alt="Screenshot #{collectionListBean.collectionListTeaser[0].title}"/>
    <div class="item-title">
        <h:form id="teaser0">
            <h:commandLink value="#{collectionListBean.collectionListTeaser[0].title}" action="#{collectionBean.showCollection(collectionListBean.collectionListTeaser[0].id)}" />    
        </h:form>
    </div>
    <div class="item-description">
        <p>
            <h:outputText value="#{collectionListBean.collectionListTeaser[0].persons.get(0).person.getFullName()}" />
        </p>
    </div>
</div>

标题显示正确,因此支持 bean 和列表可用且可访问。CollectionBean 也可用且可访问。该列表具有固定大小并在 javascript 库中使用,这就是我不使用 ui:repeat 或 h/p:dataTable 元素的原因。

我还检查了 BalusC的常见问题列表

未在支持 bean 中调用该操作,我在浏览器控制台上收到以下 javascript 错误:

Uncaught TypeError: Cannot read property 'teaser0:_idcl' of undefined

下面是backing bean(collectionBean)的相关代码:

@Named("collectionBean")
@Scope("access")
@ViewController(viewIds = {ViewIds.EDIT_COLLECTION, ViewIds.SHOW_COLLECTION,     ViewIds.EDIT_COLLECTION, ViewIds.METADATA_COLLECTION_ADMIN,     ViewIds.EDIT_COLLECTION_EXISTING, ViewIds.COLLECTION_LIST, ViewIds.HOME})
public class CollectionBean extends CollectionBeanBase {

.
.
.
public String showCollection(long id) {
    //Check if user is admin, if yes, allow to edit metadata
    Authentication auth=SecurityContextHolder.getContext().getAuthentication();
    this.collection = collectionService.findById(id);
    if (!(auth instanceof AnonymousAuthenticationToken)){
        role=auth.getAuthorities().iterator().next().getAuthority();
        if(role.equalsIgnoreCase("ROLE_ADMIN")) {
            this.collection.setEdit_flag(true);
            return ViewIds.EDIT_COLLECTION;
        }          
    }

    return ViewIds.SHOW_COLLECTION;
}

有谁知道问题可能是什么?任何提示都非常感谢!提前谢谢你们!

4

2 回答 2

0

我重新排列了元素以包装受 jQuery 库影响的所有 div,现在它就像一个魅力。

于 2012-07-03T12:48:06.150 回答
0

这是 commandLink 那么为什么要在方法中传递值。

意味着您可以使用

<f:param name="id" value="#{collectionListBean.collectionListTeaser[0].id}"/>

您可以轻松地在行动中获得该价值。

喜欢

 public String showCollection() {

FacesContext fc = FacesContext.getCurrentInstance();

        Object id = fc.getExternalContext().getRequestParameterMap().get("id");

    System.out.println(id);

    return ViewIds.SHOW_COLLECTION;
    }

我认为这是最好的方法。

于 2012-07-03T10:28:45.750 回答