我正在尝试将文件本地服务器上传到远程服务器,但是在下面的代码中也无法将文件上传到远程服务器时遇到问题。
var multer = require('multer')
var sftpStorage = require('multer-sftp')
var storage = sftpStorage({
sftp: {
host: 'ip address',
port: '22',
username: 'xxxxxxxxxx',
password: 'yyyyyyyyy'
},
destination: function (req, file, cb) {
return cb(null, '/home/g457b5jxaq4m/public_html/shiva')
},
filename: function (req, file, cb) { return cb(null, '/home/sivaprakash/Desktop/cre.txt') }
})
var upload = multer({ storage: storage })
请检查我的代码,并让我知道是否有错误。