我得到了一个包含如下步骤的列表:
<ul >
<for:forEach id="steps" items="#{RecipeBean.recipe.steps}" var="step">
<li> <com:Step description="#{step.stepDescription}"/></li>
</for:forEach>
</ul>
<p:commandButton id="addstep" value="#{msg['step.add']}" action="#{RecipeBean.addStep}" update="steps" />
按钮 addStep 将 Step 添加到 RecipeBean.recipe.steps 集合。现在应该显示新添加的步骤。但就像那样,我收到错误消息无法找到从“j_idt8:addstep”引用的标识符“steps”的组件,这可能是 for:forEach 组件。
那么有人知道我该如何解决这个问题吗?