我正在向 seaweedfs 写入图像文件,但它抛出了一个错误
SyntaxError: Unexpected end of input
下面是代码
var seaweedfs = new weedClient({
server: "localhost",
port: 8080
});
seaweedfs.write('C:/images/image.png').then(function(fileInfo) {
//return seaweedfs.read(fileInfo.fid);
console.log(fileInfo.fileUrl);
}).catch(function(err) {
//error handling
console.log(err);
});
我在上面的代码中做错了什么。