我的代码中有一个静态导入,如下所示
import { findBotletByTelephonyNumber, fetchClientCustomSettings, fetchCallerStatus } from './../shared/custom-settings.service';
如下所示开发
export const findBotletByTelephonyNumber = (x) => { //return something }
我正在其他功能中使用它们。
现在,我想切换到dynamic import
(打字稿),网上的所有示例都在导入单个模块。
我的问题是如何通过动态导入来导入多个功能(一个或一个)?
答案 0 :(得分:0)
我想出来了,以防其他人遇到同样的问题
const customSettingsModule = await import('./../shared/custom-settings.service');
customSettingsModule.findBotletByTelephonyNumber(6);