尝试使用以下代码在Node.js中为AWS SES加载外部配置文件。
aws.config.loadFromPath('../config.json');
它抛出此错误
Error: ENOENT: no such file or directory, open '../config.json'
现在文件在该位置了,但是上面的代码看不到它。
请问任何快速解决方案?
更新
它同时在本地和服务器上发生。
答案 0 :(得分:0)
使用__dirname
let AWS = require('aws-sdk')
const path = require('path')
const dirPath = path.join(__dirname, '/config.json')
AWS.config.loadFromPath(dirPath)