3

我有 a<ui:repeat>迭代 a并使用 a中当前 String 的值List<String>创建a 。 但是当我添加到我的属性时,值总是来自上次迭代的字符串。 <p:commandButton><p:lightBox>
widgetVar<p:lightBox><p:commandButton>

有人可以解释发生了什么并且(根据我的需要widgetVar)可能会指出一个解决方案吗?

这是我的html:

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:p="http://primefaces.org/ui">
<h:head />
<h:body>
    <ui:repeat var="thing" value="#{bugBean.things}">
        <p:lightBox widgetVar="whatever">
            <h:outputLink>
                <h:outputText value="#{thing}" />
            </h:outputLink>
            <f:facet name="inline">
                <h:form>
                        <p:commandButton action="#{bugBean.writeThing(thing)}"
                            value="#{thing}" />
                </h:form>
            </f:facet>
        </p:lightBox>
    </ui:repeat>
</h:body>
</html>

这是支持 bean:

package huhu.main.managebean;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import javax.enterprise.context.SessionScoped;
import javax.inject.Named;

@Named
@SessionScoped
public class BugBean implements Serializable {

   private static final long serialVersionUID = 1L;
   List<String> things = new ArrayList<String>();

   public BugBean(){
      things.add("First");
      things.add("Second");
      things.add("Third");
   }

   public void writeThing(String thing){
      System.out.println(thing);
   }

   public List<String> getThings() {
      return things;
   }

   public void setThings(List<String> things) {
      this.things = things;
   }

}
4

2 回答 2

9

widgetVar基本上生成一个窗口范围的 JavaScript 变量。你现在在 JavaScript 上下文中有效地做的是:

window['whatever'] = new Widget(lightboxElement1);
window['whatever'] = new Widget(lightboxElement2);
window['whatever'] = new Widget(lightboxElement3);
// ...

这样whateverJS 中的变量只会引用最后一个。

您基本上应该给它们一个唯一的名称,例如通过添加迭代索引:

<ui:repeat var="thing" value="#{bugBean.things}" varStatus="iteration">
    <p:lightBox widgetVar="whatever#{iteration.index}">

这样它就变得有效:

window['whatever0'] = new Widget(lightboxElement1);
window['whatever1'] = new Widget(lightboxElement2);
window['whatever2'] = new Widget(lightboxElement3);
// ...

这样,您可以通过whatever0whatever1whatever2等来引用各个灯箱。


与具体问题无关:使用单个灯箱并在每次点击时更新其内容不是更容易吗?

于 2012-11-02T17:29:02.917 回答
0

最近我在升级到 primefaces 4.0 -> 5.1 时遇到了类似的问题

我不得不使用语法:

PF('whatever0')

由于 primefaces 命名 widgetvar 的方式发生了变化。

于 2014-11-14T09:13:13.150 回答