1

当我运行我的咖啡脚本测试应用程序时,我收到了这个错误”

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与文件中的其他任何内容相比有什么不同。谁能发现我做错了什么?

4

2 回答 2

2

我根本不使用 MacOS,但在我看来,我认为你应该声明:

const https = require('https');

在您的代码顶部,因为我看到您使用 this 的实例(关键字)。希望这可以帮助你一点!

于 2018-12-06T03:31:23.797 回答
0

原来问题是字符串中的空格。

与@phix 的评论一样,如果我手动创建文件没有问题。我有一个生成它的 Python 应用程序。也许它包括一些隐藏的角色或其他东西。

无论如何,我只需要字符串中的版本号,因此将我的 Python 代码编辑为如下所示:

version = std_out.split()[1]
于 2018-12-06T12:45:12.330 回答