伙计们。几个月前,我为上传文件添加了 ipfs,一切正常,但一周前我遇到了问题,无法解决。我尝试将文件发送到 IPFS 并获取文件的哈希值。像这样。连接ipfs: ipfs = await Ipfs.create({ config: { Bootstrap: [ '/dns4/ams-1.bootstrap.libp2p.io/tcp/443/wss/ipfs/QmSoLer265NRgSp2LA3dPaeykiS1J6DifTC88f5uVQKNAd', '/dns4/lon-1.bootstrap.libp2p.io/tcp/443/wss/ipfs/QmSoLMeWqB7YGVLJN3pNLQpmmEk35v6wYtsMGLzSr5QBU3', '/dns4/sfo-3.bootstrap.libp2p.io/tcp/443/wss/ipfs/QmSoLPppuBtQSGwKDZT2M73ULpjvfd3aZ6ha4oFGL1KrGM', '/dns4/node0.preload.ipfs.io/tcp/443/wss/ipfs/QmZMxNdpMkewiVZLMRxaNxUeZpDUb34pWjZ1kZvsd16Zic', '/dns4/node1.preload.ipfs.io/tcp/443/wss/ipfs/Qmbut9Ywz9YEDrz8ySBSgWyJk41Uvm2QJPhwDJzJyGFsD6' ] } }); console.timeEnd('IPFS Started');并尝试发送文件 const {ipfs, ipfsInitError} = useIpfs({commands: ['id']}); const addToIpfs = async (file) => { const hashOfFile = await ipfs.add(file); return hashOfFile[0].path;};所以,当我尝试上传时,我有错误Unhandled Rejection (TypeError): undefined is not an object (evaluating ‘hashOfFile[0].path’)in hashOfFile return functionAsyncGenerator {_invoke: function, next: function, throw: function, return: function, Symbol(Symbol.asyncIterator): function}``earlier it was hash of file.could you help me?
1 回答
慕哥9229398
TA贡献1877条经验 获得超6个赞
在 GitHub 上,我得到了开发人员的回答
以前 ipfs.add 返回一个数组,这很好,除非您添加大量文件,在这种情况下您的进程可能会耗尽内存。现在它返回一个你发现的异步迭代器。注意你不需要做双重等待:
// instead of
for await (const inputFile of await ipfs.add({ path: 'randompath.txt', content: file })) {
// do:
for await (const inputFile of ipfs.add({ path: 'randompath.txt', content: file }))
它可以工作,但在 Safari 中仍然存在问题 - 崩溃
Unhandled Rejection (TypeError): null is not an object (evaluating 'ipfs.add')
添加回答
举报
0/150
提交
取消