如何在角度9中从过时的System.import()迁移到Import()

时间:2020-10-15 16:58:05

标签: angular typescript es6-modules

当前在构建我的角度应用程序时,正在抛出警告消息,如下所述

System.import()已过时,将很快被删除。使用import() 代替。欲了解更多信息,请访问 https://webpack.js.org/guides/code-splitting/

这是引起警告消息的示例代码! 请建议我如何使用 import()而不是 System.import()

来避免此警告
samplePngExportMethod(element: any) {
   const blob = new Blob([new Uint8Array(array)], { type: 'image/png' });
   System.import('file-saver').then(function (fileSaver) {
      fileSaver.saveAs(blob, 'dashboard.png');
   }); 
}

0 个答案:

没有答案