0

我在 PHP 中有以下代码(逻辑):

$fp = fopen('fp.txt', 'w');
    if ($msg == 'say') {
        fwrite($fp, 'Hello world!');
    }
$msg = 'done';

要将其转换为异步事件驱动代码,node for PHP 开发人员的作者建议我像这样重构它。

$fp = fopen('fp.txt', 'w');
if ($msg == 'say') {
    fwrite($fp, 'Hello world!');
    $msg = 'done';
} else {
    $msg = 'done';
}

接着,

fs.open('fp.txt', 'w', 0666, function(error, fp) {
    if (msg == 'say') {
        fs.write(fp, 'Hello world!', null, 'utf-8', function() {
        msg = 'done';
    });
    } else {
        msg = 'done';
    }
});

您会清楚地看到,存在代码重复。'msg = "done"' 被重复。这可以避免吗?代码重复是不好的做法,对吗?

事件驱动编程总是这样吗?

4

1 回答 1

2

像这样:

var done = function() {
    msg = 'done';
};

fs.open('fp.txt', 'w', 0666, function(error, fp) {
    if (msg == 'say') {
        fs.write(fp, 'Hello world!', null, 'utf-8', done);
    } else {
        done();
    }
});
于 2013-09-13T02:32:49.053 回答