我正在尝试通过package.json运行测试脚本,
"test": "cross-env NODE_ENV=test nyc mocha --recursive --compilers js:babel-register --require babel-polyfill",
在运行时,出现以下错误:
internal/modules/cjs/loader.js:638
throw err;
^
Error: Cannot find module 'C:\Users\aw030085\Desktop\github\diabetesdashboard\node'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15)
at Function.Module._load (internal/modules/cjs/loader.js:562:25)
at Function.Module.runMain (internal/modules/cjs/loader.js:831:12)
at startup (internal/bootstrap/node.js:283:19)
at bootstrapNodeJSCore (internal/bootstrap/node.js:622:3)
我有一个可以很好地运行它的同事,但是他不确定是否还要安装任何东西。我不确定为什么会引发错误。
我已使用Windows 10安装了节点10.16.2。
答案 0 :(得分:0)
您可以运行此
foreach ($arrays as $key => $values) {
if (is_array($values)) {
if (count($values)) {
foreach ($values as $index => $data) {
$arrays[$key][$index]['return_time'] = "00:00";
}
} else {
$arrays[$key] = $values;
}
}
}
答案 1 :(得分:0)
聚会有点晚,但如果有人遇到这个问题,请尝试降低您的节点版本。 在我们的一个项目中,这对我的队友有用