我已经制作了一个节点脚本,并通过在console.logs中使用颜色来美化了其输出:

const noColorOption = args[1] === '--no-color' || args[2] === '--no-color';
const colors = {
    green: noColorOption ? '' : '\x1b[32m%s\x1b[0m',
    cyanRed: noColorOption ? '' : '\x1b[36m%s\x1b[91m%s\x1b[0m'
};

// ... examples of console.logs in my script ...
console.log(colors.cyanRed,
  filename + '\n   ',
  redundantModules.join('\n   '));
console.log(colors.green, `\nTotal files searched: ${totalFilesSearched}`);


但是,--no-color选项无法按预期工作,因为console.log只是将空字符串打印为空格。

我应该只添加没有第一个参数的新console.logs还是有办法分配--no-color选项以使其仅使用默认颜色正确打印出来?

最佳答案

您可以使用%s代替空字符串。

const noColorOption = process.argv[2] === '--no-color';
const colors = {
    green: noColorOption ? '%s' : '\x1b[32m%s\x1b[0m',
    cyanRed: noColorOption ? '%s' : '\x1b[36m%s\x1b[91m%s\x1b[0m'
};


console.log(colors.cyanRed, __filename + '\n   ');
console.log(colors.green, `Total files searched: 0`);

09-25 19:50