-1

我正在使用 ipfs-http-client 模块。

这是我的脚本

async function main() {

const ipfs_client = require('ipfs-http-client');
const client = ipfs_client({recursive: false});


async function addFile(file_data) {
    const cid = function (data) {

        return client.add(data).then(cid =>{return cid;}).catch(err=>{
            console.log(err)})
    }
    const real_cid = cid(file_data).then(result=>{return result}).catch(err=>{console.log(err)});
    return real_cid;
}

const sendFileToNet = async (file) => {
    return await addFile(file);
}
async function getFile(cid){

//error occurs here
    for await (const chunk of client.cat(cid)) {
        console.info(chunk)
    }
    return content;
}

const getFileFromNet = async()=>{
    return await getFile();
}
getFileFromNet("QmU77sHBUuCT12324e9Re59bNHekpKg1PdCpiVAj3MFLiH").then(r => console.log(r));
module.exports = {sendFileToNet, getFileFromNet

};

}

main();

(node:22889) UnhandledPromiseRejectionWarning: 错误: 无效版本,必须是 Function.validateCID 中等于 1 或 0 的数字 (/home/chipego/Documents/MedChain/node_modules/ipfs-http-client/node_modules/cids/src/index .js:346:13) 在新 CID (/home/chipego/Documents/MedChain/node_modules/ipfs-http-client/node_modules/cids/src/index.js:174:9) 在 Object.cat (/home/ chipego/Documents/MedChain/node_modules/ipfs-http-client/src/cat.js:16:48) 在 cat.next () 在 getFile (/home/chipego/Documents/MedChain/logic/ipfs_submit_controller.js:23: 26) 在 getFileFromNet (/home/chipego/Documents/MedChain/logic/ipfs_submit_controller.js:30:22) 在 main (/home/chipego/Documents/MedChain/logic/ipfs_submit_controller.js:32:5) 在 Object. (/home/chipego/Documents/MedChain/logic/ipfs_submit_controller.js:39:1) 在 Module._compile (internal/modules/cjs/loader.js:1063:node --trace-warnings ...显示警告的创建位置)(节点:22889)UnhandledPromiseRejectionWarning:未处理的承诺拒绝。此错误源于在没有 catch 块的情况下抛出异步函数内部,或拒绝未使用 .catch() 处理的承诺。要在未处理的 Promise 拒绝时终止节点进程,请使用 CLI 标志--unhandled-rejections=strict(请参阅 https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode)。(拒绝 id:2)(节点:22889)[DEP0018] DeprecationWarning:不推荐使用未处理的承诺拒绝。将来,未处理的 Promise 拒绝将终止 Node.js 进程

4

1 回答 1

0

您的getFile函数需要一个参数。您正在调用它,getFileFromNet但没有传递参数。

于 2021-04-15T14:07:29.183 回答