当前在构建我的角度应用程序时,正在抛出警告消息,如下所述
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');
});
}