我有一个尝试多次解决的问题,但我仍然失败。

我不确定问题是归咎于“您不了解JavaScript基础”还是归因于“您不了解paper.js”。

背景


该代码在node.js环境中运行
我使用async.each同时执行多个功能
每个函数都会创建一个paper.js项目,然后最后将其删除
为避免干扰,我在调用async.each之前创建了一个paperscope对象列表。然后,使用paperscope对象之一调用每个函数。


看起来像这样:

var list_of_paperscopes = [];

for (var i = 0; i < number_of_desired_results; i++){

    list_of_paperscopes.push( new paper.PaperScope() );

}

list_of_functions[1] = function (paperscope, callback) {

    paperscope.setup(new paperscope.Size(500, 500));

    // etc. etc.
    // export paper result

    paperscope.project.remove();

},

list_of_functions[2] = function (paperscope, callback) {

    paperscope.setup(new paperscope.Size(300, 300));

    // etc. etc.
    // export paper result

    paperscope.project.remove();

}

// ...

async.each(list_of_indices, function (index, asyncEachCallback) {

    var paperscope = list_of_paperscopes.pop();

    list_of_functions[index](paperscope, function (err, value) {

           // do something


// etc etc.


问题

通用代码有效。
但是不同的纸张项目会相互干扰。本来应该包含在所有项目中的元素有时会在一个项目中累积,而在所有其他项目中却缺乏。



如何防止同时执行的纸张项目相互干扰?有没有一种方法可以让我使用async.each,还是必须切换到缓慢的连续执行?

[编辑:]更新且更完整的代码示例

// This is still a toy example
// That is why some things may appear nonsensical when - in fact - they are required

var list_of_functions = [];

list_of_functions[0] = function (paperscope, callback) {

    paperscope.setup(new paperscope.Size(300, 300));

    // etc. etc.
    // export paper result

    paperscope.project.remove();

}


list_of_functions[1] = function (paperscope, callback) {

    paperscope.setup(new paperscope.Size(300, 300));

    // The following text will appear multiple times in the same paper project but not the others for THIS function with ID 1
    var some_text = new paperscope.PointText({
        point: [240, 190],
        content: 'some text',
        fillColor: 'black',
        fontFamily: 'Courier New',
        fontSize: 7,
        justification: 'center'
    });

    // etc. etc.
    // export paper result

    paperscope.project.remove();

}

// This array determines how often we will call each function
var list_of_function_indices = [0, 1, 1, 1] // I want to execute function with ID 0 once, and the other function 3 times


async.each(list_of_function_indices, function (function_index, asyncEachCallback) {

    // Generate a new PaperScope() object
    var paperscope = new paper.PaperScope();

    list_of_functions[function_index](paperscope, function (err, value) {

        if (err) {
            sails.log.error(err);
        }

        // always continue
        asyncEachCallback();

    });


}, function (err) {

    if (err) {
        sails.log.debug('A function failed...');
    }

});


一般情况下,paper.js不能异步执行吗?我对此不完全了解:http://paperjs.org/reference/paperscope/#project

最佳答案

感谢@Bergi和@NicholasKyriakides的帮助,我得以解决此问题。

解决方案是预先生成PaperScope对象的列表,如下所示:

var list_of_paperscope_objects = [];

for (var i = 0; i < number_of_desired_paperscopes; i++){

    // Generate a new PaperScope() object
   list_of_paperscope_objects.push( new paper.PaperScope() );

}


然后,在每个异步函数中,我都可以创建和使用不同的Paperscope对象。为此,我将Paperscope对象列表以及键(索引)传递给每个函数。然后我可以做:

paperscopes[key].setup(new paper.Size(300, 200));
paperscopes[key].settings.insertItems = false;

var rect = new paperscopes[key].Path.Rectangle({
    point: [0, 0],
    size: [300, 300]
});

paperscopes[key].project.activeLayer.addChild(rect);


非常感谢评论者@Bergi和@NicholasKyriakides的帮助。

关于javascript - 相互干扰的同时执行的功能-此处:干扰paperScopes,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48918830/

10-11 05:26