繁体   English   中英

网络工作者无法正常工作

[英]web worker doesn't work

有人可以告诉我为什么我的网络工作者无法正常工作吗? 我画了一个运行良好的动画画布。 但是,当我通过文本框调整大小时,它将停止运行,直到执行JavaScript。 现在,我创建一个工作人员来承担在不停止画布移动的情况下调整图形大小的任务。 我希望它通过获取文本框的值来更新隐藏字段的值,转换为字符串,然后将结果设置为隐藏字段值。 为此,我制作了文件。 我的意思是html标记中没有JavaScript代码。 代码文件如下

/* Code that will be run by the worker */

function applyChanges(radius, size) {
    return radius + "," + size;
}

/*
    Add an event listener to the worker, this will be called when      
    the worker receives a message from the main page.
*/
this.onmessage = function (event) {
    var data = event.data;

    // Message sent by the worker to the main page.
    postMessage(applyChanges(data.radius, data.size));
}

/* Worker's code */

// Create a new worker
var myWorker = new Worker("C:\applications\bb\scripts\setValues.js");
/*
    Add a event listener to the worker, this will be called whenever the worker posts any message.
*/
myWorker.onmessage = function (event) {
    document.getElementById().value = event.data;
};

// Register events for button.
document.getElementById("button").onclick = function () {
    var circle = document.getElementById("tcircle");
    var square = document.getElementById("tsquare");
    var radius = circle.value;
    var size = square.value;

    // check if those are numerics
    if (!isNaN(radius) && !isNaN(size)) {
        // verify that the won't hide more the 1/4 of the circle.
        if (radius >= size / Math.SQRT2) {
            // since we are going to test scrolling and zooming, we are not going to  set max values of radius and size.

            message = { "tcircle": radius, "tsize": size };

            // Message sent by the main page to the worker.
            myWorker.postMessage(message);

        }
        else {
            alert("The radius must not be less that: size/sqrt(2)");
        }
    }
    else {
        alert("Required numeric type!");
    }
}

// Terminate the worker.
myWorker.terminate(); 

Web Worker是异步JavaScript处理环境,无法访问其宿主环境:DOM。 在Web Worker中,您可以卸载繁琐的算法,数学计算,但是您无法访问表单元素,更改或访问DOM,而且我也相信您无法生成Ajax请求。

Chrome现在允许的功能已有更新,可能会解决此问题。

根据此答案,您可以使用Chrome将数据传递回工作人员,然后再将其写回到画布上,以便其他人遵循,但这至少是继续进行测试的一种方法。

网络工作者和画布

您可能需要看一下该演示的工作原理,以了解使用WebWorkerCanvas可以做什么。

http://www.robodesign.ro/coding/html5-demo-video-histogram/index-web-worker.html

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM