表达式求值时出错

时间:2019-05-23 03:46:50

标签: javascript ecmascript-6 ecmascript-5

我创建了以下函数,在其中传递了name="test"和数组为[ './', './a.html', './b.js' ]。当我尝试打印staticAssets时,我得到的像./, ./a.html, ./b.js,这样的值,但是我也只需要在文字内部输入[ './', './a.html', './b.js' ]的值。

exports.getData = function(name, array) {
    return fs.appendFile("testScript.js", `var staticAssets=${array};)`,
        () => {}
    )
};

0 个答案:

没有答案