当我运行coffeescript测试应用程序时,出现此错误”
2018-12-06 02:19:24,681 <NodeTest> [ERROR] [MainThread] node_test.run - NodeJS test for Node v7.9.0 did not pass. Exit status: 1
Std Out:
Std Error: /opt/node_js/conf.js:25
osVersion: 'MyOS 1.10.1.21
^^^^^^^^^^^^^^^^^
SyntaxError:无效或意外的令牌
这是conf.js
的内容:
const require('https');
module.exports = {
// Endpoint
endpoint: 'https://123.456.789.876',
// creds
access: 'accessblablabla',
secret: 'secret blablabla',
// Other options
s3BucketEndpoint: false,
s3ForcePathStyle: true,
httpOptions: {
agent: new https.Agent({ca: '-----BEGIN CERTIFICATE-----'})
},
// OS version
myOsVersion: 'MyOS 1.10.1.21'
}
我不明白为什么myOsVersion: '%s
与文件中的其他内容相比有什么不同。有人可以发现我在做什么吗?
答案 0 :(得分:2)
我根本不使用MacOS,但我认为您应该声明:
const https = require('https');
在代码的顶部,因为我看到您使用此实例( new 关键字)。希望这可以对您有所帮助!
答案 1 :(得分:0)
事实证明,问题出在字符串中的空格。
与@phix的注释一样,如果我手动创建文件,则没有问题。我有一个生成它的Python应用程序。也许其中包括一些隐藏的字符或某些东西。
无论如何,我只需要字符串中的版本号,就可以这样编辑我的Python代码:
version = std_out.split()[1]