导入ESM模块时await关键字的作用是什么

问题描述

Node.js 文档的加密模块文档使用顶级 await 进行导入,但显然不是动态导入

来源: https://nodejs.org/dist/latest-v15.x/docs/api/crypto.html#crypto_static_method_certificate_exportchallenge_spkac_encoding

下面的2个语句有什么区别(它们似乎做的一样)

import * as fs from 'fs'
const fs_ = await import('fs');        // why use this?

解决方法

[不重复]

  • await import() 静态导入 EC 模块(而不是动态导入 import()),它与 CommonJS 模块 require() 语法非常相似,这是顶层的唯一目的await 关键字

在撰写本文时支持:(node.js 14.8.0) (chrome 89) (Firefox 89)

  • 如果我们已经拥有所有这些漂亮的静态导入语法,为什么还要使用它呢? (例如:import * as imp from './someModule.mjs
  • 它写起来更直接,也更容易记住(例如:await import('./someModule.mjs') 静态地需要“someModule”并将其导出的数据作为 {default:'someDefVal'[,...]} 对象返回
// static import -----------------------------------// blocks this module untill './module1.mjs' is fully loaded 
  // traditional static import in EC modules 
    import * as imp from './module1.mjs'; 
    console.log( imp );                             // -> {default:'data from module-1'}
    
  // static import with await import() (does the same as above but is prettier) 
    console.log( await import('./module1.mjs') );   // -> {default:'data from module-1'}
    
    function importFn1(){                           // the await import() is a satic import so cannot be used in a function body
        // await import('./module1.mjs');           // this would throw a SyntaxError: Unexpected reserved word 
    }
    
    
// dynamic import ----------------------------------// does not block this module,the './module2.mjs' loads once this module is fully loaded (not asynchronous)
    import('./module2.mjs') 
        .then((res)=>{ console.log(res) })          // -> {default:'data from module-2'}
        .catch((err)=>{ console.log(err) });
        
    (function ImporFn2(){
        import('./module2.mjs')                     // dynamic import inside a function body 
            .then((res)=>{ console.log(res) })      // -> {default:'data from module-2'}
            .catch((err)=>{ console.log(err) });
    })();
    
    console.log( '----- MAIN MODULE END -----' );
  • 控制台结果
{ default: 'data from module-1' }
{ default: 'data from module-1' }
----- MAIN MODULE END -----
{ default: 'data from module-2' }
{ default: 'data from module-2' }

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...