系统相关
首页 > 系统相关> > 使用服务器页面持久性设置“将页面保留在内存中”,XPages progressbar不能按预期工作

使用服务器页面持久性设置“将页面保留在内存中”,XPages progressbar不能按预期工作

作者:互联网

我想使用Mark Leusnik的(感谢他)非常好的ProgressBar实现.不幸的是,该实现对我不起作用.

经过一些调查,我发现了造成麻烦的原因:在我的xpage应用程序中,我具有服务器页面持久性设置,可将页面保留在内存中.在Mark Leusnik的Demo App中,设置是将页面保留在磁盘上.我不知道为什么该设置会影响进度栏的运行时行为?

通过在磁盘上设置保留页面,所有工作正常:

enter image description here

不幸的是没有设置保留页面在内存中:

enter image description here

在此先感谢您提供任何解决方案,解决方法或替代方案!

解决方法:

工作解决方案(但是,欢迎长期运行代码进度条的其他解决方案,想法等)

经过一些进一步的研究,我发现了一种与服务器页面持久性设置无关的完美解决方案(将页面保留在内存中/将页面保留在磁盘上).

我的解决方案的重点是为服务器端任务实现额外的XAgent,而不是在按钮的onClick-Event内部运行代码.此外,此XAgent将在进度条的启动例程中“启动”(dojo.xhrGet).

在Mark Leusnik的solution上,我进行了以下更改:

demo.xsp-XPage

<xp:button value="Start a (fake) long running process" 
    id="button1" dojoType="dijit.form.Button">
    <xp:eventHandler event="onclick" submit="false">
        <xp:this.script><![CDATA[xProgress.start();]]></xp:this.script>
    </xp:eventHandler>
</xp:button>

xProgress-脚本库(CSJS)

start : function() {

    this.targetNode = dojo.byId(this.targetNodeId);

    if (this.targetNode==0) {
        alert("Invalid target node specified for xProgress progress bar");
    }

    //setup the dijit progressbar
    if (this.progressBar == null) {
        this.progressBar = new dijit.ProgressBar(
                {id: "myProgressBar", maximum: 100}, this.targetNode);
    } else {
        this.progressBar.update({
            maximum: 100,
            progress: 0
        });

    }

    dojo.xhrGet({
        url: window.location.href.substring(0, 
                    window.location.href.indexOf(".nsf")+4) + "/export.xsp",
        load: dojo.hitch(xProgress, "stop")
    });

    this.timerId = setInterval( dojo.hitch(xProgress, "update"), this.updateInterval);

},

export.xsp-XAgent(新的)

<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" rendered="false">

    <xp:this.afterRenderResponse><![CDATA[#{javascript: print("long running code started");
    print( "browser: " + context.getUserAgent().getBrowser() + ", 
    remote IP: " + facesContext.getExternalContext().getRequest().getRemoteAddr());

    updateProgress(0);

    /*java.lang.Thread.sleep(750);
    updateProgress(5);

    java.lang.Thread.sleep(750);
    updateProgress(10);

    java.lang.Thread.sleep(750);
    updateProgress(15);

    java.lang.Thread.sleep(750);
    updateProgress(20);

    java.lang.Thread.sleep(750);
    updateProgress(25);

    java.lang.Thread.sleep(750);
    updateProgress(30);

    java.lang.Thread.sleep(2000);
    updateProgress(50);

    java.lang.Thread.sleep(1500);
    updateProgress(60);

    java.lang.Thread.sleep(1500);
    updateProgress(75);

    java.lang.Thread.sleep(1500);
    updateProgress(80);

    java.lang.Thread.sleep(1500);
    updateProgress(90);

    java.lang.Thread.sleep(1500);
    updateProgress(100);*/

    print("long running code stopped");

    function updateProgress(to) {
        progressPercentage = to;
        synchronized(sessionScope) {
            sessionScope.put("progress", to);
        }
    }}]]></xp:this.afterRenderResponse>

</xp:view>

标签:lotus-domino,dojo,javascript,xpages
来源: https://codeday.me/bug/20191028/1949016.html