1

为了获得 Dropbox 上托管的文件的下载链接,我使用了 Dropbox JavaScript API ( 7.0.0):

export const fileDownload = async function fileDownload(fileUUID) {

    let isSucceeded;
    let message;
    let file;
    const dbx = _dropboxFactory();

    try {
        const operationResult = await dbx.filesGetTemporaryLink({
            path: `/${CONFIG_STORAGE.uploader.assetsPath}/${fileUUID}`
        });

        if ("OK" === http.STATUS_CODES[operationResult.status].toUpperCase()) {

            file = Object.freeze({
                length: operationResult?.result?.metadata?.size,
                link: operationResult?.result?.link,
                mime: mime.lookup(operationResult?.result?.metadata?.name),
                name: operationResult?.result?.metadata?.name
            });
            isSucceeded = true;
            message = SYS_MESSAGES.storageFileDownloadSucceeded.code;

        } else {
            isSucceeded = false;
            message = SYS_MESSAGES.storageFileDownloadFailed.code;
        }
    } catch (err) {
        file = "error";
        isSucceeded = false;
        message = "FIL_NOT_FOUND";
    }

    const downloadResult = Object.freeze({
        file,
        isSucceeded,
        message
    });

    return downloadResult;

};

问题是当path文件错误时,我得到一个 Node.js 异常:

(节点:9156)UnhandledPromiseRejectionWarning:#<Object>

(节点:9156) UnhandledPromiseRejectionWarning:未处理的承诺拒绝。此错误源于在async没有 catch 块的函数内部抛出,或拒绝未处理的承诺.catch()。要在未处理的 Promise 拒绝时终止节点进程,请使用 CLI 标志--unhandled-rejections=strict(请参阅https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode)。(拒绝编号:2)

(节点:9156)[DEP0018] DeprecationWarning:不推荐使用未处理的承诺拒绝。将来,未处理的 Promise 拒绝将使用非零退出代码终止 Node.js 进程。

我测试了几个选项并得出结论,问题出在:

const operationResult = await dbx.filesGetTemporaryLink({
    path: `/${CONFIG_STORAGE.uploader.assetsPath}/${fileUUID}`
});

我无法理解的是,为什么 Node.js 声称“未处理的承诺拒绝”“未处理的承诺.catch()UnhandledPromiseRejectionWarning并在生成它的代码被包裹时抛出异常try-catch

从 Node.js 15.xx 开始,未处理的 Promise 拒绝将使用非零退出代码终止 Node.js 进程。因此,如何避免UnhandledPromiseRejectionWarning

临时解决方法:

使用 flag 运行--unhandled-rejections=warnNode.js。
这将防止 Node.js 进程在UnhandledPromiseRejectionWarning.

4

2 回答 2

1

问题出在 Dropbox 库中,Dropbox 团队已通过发布7.1.0. 升级问题中的代码后可以正常工作。

于 2020-10-12T23:22:48.843 回答
0

尝试将您的fileResponse功能更改为这样的东西。您正在混淆async/await.then().catch()样式语法。

只需将您的功能包装在try-catch

async function getDocument() {
  try {
    const response = await fetch(`${http() + ip}/downloadDocument`, {
      body: JSON.stringify({fileUUID: oModel.oData[0].documentFile}),
      cache: "no-cache",
      credentials: "same-origin",
      headers: {
        "Content-Type": "application/json"
      },
      method: "POST",
      mode: "cors"
    });

    const data = await response.json();
    
    return data;
  } catch(err) {
    console.log(err);
  }
}

于 2020-10-08T20:35:12.583 回答