我遵循this tutorial使用Node.js将文件上传到IPFS,但是我遇到的问题在本教程中没有出现! 它与Async和await函数有关,我无法发表此声明
const fileHash = fileAdded[0].hash;
我尝试了
const fileAdded = await ipfs.add({path: Name, content: file});
但不幸的是,我得到了一个错误(哈希未定义)。
我尝试使用回调函数,但是我不确定自己的方式,因为(fileAdded)变量没有给出任何答案,并且它也是未定义的,
这是完整的代码:
const ipfsClient = require('ipfs-http-client');
const express = require('express');
const bodyParser = require('body-parser');
const fileUpload = require('express-fileupload');
const fs= require('fs');
const ipfs = new ipfsClient({host: 'localhost', port: '5001', protocol: 'http'});
const app= express();
var hash = require('hash');
app.set('view engine', 'ejs');
app.use(bodyParser.urlencoded({extended:true}));
app.use(fileUpload());
app.get('/',(req,res)=>{
res.render('home');
});
app.post('/upload',(req,res)=>{
const f= req.files.file;
const Name = req.files.file.name;
const filePath ="files/"+ Name;
f.mv(filePath,async(err)=>{
if(err){
console.log("error failed to download a file");
return res.status(500).send(err);
}
const fileh = await addFile(Name,filePath);
fs.unlink(filePath, (err)=>{
if(err) console.log("error");
});
res.render('upload',{Name,fileh});
});
});
const addFile= async(Name,filePath)=> {
const file=fs.readFileSync(filePath);
const fileAdded = await ipfs.add({path: Name, content: file});
const fileHash = fileAdded[0].hash;
return fileHash;
};
app.listen(3000,()=>{
console.log("server is listen");
});
这是出现的错误:
const addFile= async(Name,filePath)=> {
const file=fs.readFileSync(filePath);
const fileAdded = await ipfs.add({path: Name, content: file},(err,res)=>{
if(err)
console.log(err);
const fileHash = fileAdded[0].hash;
return fileHash;});};
但是fileAdded和fileHash的值未定义。
在我使用@Always Learning中的这段代码后:
const addFile= async(Name,filePath)=> {
const file=fs.readFileSync(filePath);
const hashes = [];
const filesAdded = ipfs.add({path: Name, content: file});
for await (const result of filesAdded) {
hashes.push(result.hash);
console.log(result.hash);
console.log(result);
}
return hashes; // if you know it's just one for example
};
它给了我一个文件的信息,但是散列不起作用,因为它给了我未定义的内容,我只想提取一个像这样的散列“ QmRndAYkvH3D2qhmYfaAZvWT6MDi4NiJPbzJor3EL87rrb”
答案 0 :(得分:0)
由于ipfs.add()
返回一个异步可迭代对象,因此您需要像这样使用for async
进行遍历:
const addFile= async(Name,filePath)=> {
const file=fs.readFileSync(filePath);
const hashes = [];
const filesAdded = ipfs.add({path: Name, content: file});
for await (const result of filesAdded) {
if (result.hash) {
hashes.push(result.hash);
} else if (result.cid) {
hashes.push(result.cid.multihash); // guessing here - might be another part of the cid object
} else {
console.log("No hash found in",result);
}
}
return hashes[0]; // if you know it's just one for example
};
答案 1 :(得分:0)
你必须改变这个:
const fileHash = fileAdded[0].hash;
进入这个:
const fileHash = fileAdded.hash;
(所以删除 [0]
)。
这对我有用:它与图书馆有关。