如何使用Ajax更新GraphicImage而不闪烁?

时间:2018-05-08 17:30:04

标签: ajax jsf-2

请查看以下表格。特别要注意ajax和graphicImage元素。 ajax元素嵌入在selectOneMenu中。当菜单选择改变时,图像被相应地更新。更新有时会导致“闪烁”(旧图像消失,表单调整大小(缩小),新图像出现,表单恢复原始大小)。我猜测不闪烁(闪烁)是由于从网址(网络上其他地方的服务器)获取新图像的速度(或缺少速度)造成的。如果没有在本地缓存所有图像,有没有办法解决这个问题?导致旧图像保留到位,直到新图像准备好?至少阻止表单调整大小?

<h:form rendered="#{orderController.addingNew}" styleClass="demo">
    <fieldset>
        <legend>New Order</legend>

        <h:panelGrid columns="2">
            <h:outputText value="Patient"></h:outputText>
            <h:selectOneMenu validatorMessage="required" value="#{orderController.patientId}"  onchange="submit()">
                <f:selectItems value="#{orderController.patients}" />
            </h:selectOneMenu>

            <h:outputText value="Product"></h:outputText>
            <h:selectOneMenu value="#{orderController.productId}">
                <f:selectItems value="#{orderController.products}" var="product" itemValue="#{product.id}" itemLabel="#{product.name}" />
                <f:ajax render="productImage" listener="#{orderController.productSelectionChanged}"/>
            </h:selectOneMenu>

            <h:graphicImage url="#{orderController.productImageUrl}" id="productImage"/>
        </h:panelGrid>

        <h:panelGroup>
            <h:commandButton value="Save" action="#{orderController.save}" accesskey="s" styleClass="demo"/>
            <h:commandButton value="Cancel" action="#{orderController.cancel}" accesskey="c" immediate="true" styleClass="demo"/>
        </h:panelGroup>
    </fieldset>
    <h:outputText value="&#160;" />
</h:form>

1 个答案:

答案 0 :(得分:0)

您可以将onevent属性绑定到您的ajax标记:

<f:ajax render="productImage" listener="#{orderController.productSelectionChanged}" 
    onevent="ajaxEventListener"/>

然后,只要ajax进程的某个阶段发生,您就会收到通知。您可能有兴趣使用jQuery实现类似的东西:

function ajaxEventListener(data) {
    var status = data.status; // Can be "begin", "complete" or "success".
    var source = data.source; // The parent HTML DOM element.
    //Give your form an id in order to access the image in JS
    var $image = $(document.getElementById("yourFormId:productImage"));  //Grab your image

    switch (status) {
        case "begin": // Before the ajax request is sent.
            // Fade out your image
            $image.fadeOut( "slow" );
            break;

        case "success": // After update of HTML DOM based on ajax response.
            // You've got the url properly updated, start fading in the image again
            $image.fadeIn( "slow" );
            break;
    }
}

为了缩短加载时间,您应该阅读一些有关如何在Web浏览器中缓存资源的文章。但这不是JSF特有的,你可以做with a web filter

另见: