错误:否:没有此类文件或目录,请打开“ ../config.json”

时间:2018-08-19 20:30:31

标签: javascript node.js amazon-web-services amazon-ses

尝试使用以下代码在Node.js中为AWS SES加载外部配置文件。

aws.config.loadFromPath('../config.json');

它抛出此错误

Error: ENOENT: no such file or directory, open '../config.json'

现在文件在该位置了,但是上面的代码看不到它。

请问任何快速解决方案?

更新

它同时在本地和服务器上发生。

1 个答案:

答案 0 :(得分:0)

使用__dirname

let AWS = require('aws-sdk')
const path = require('path')
const dirPath = path.join(__dirname, '/config.json')

AWS.config.loadFromPath(dirPath)