gpt4 book ai didi

javascript - 是否可以动态导入节点模块?

转载 作者:行者123 更新时间:2023-12-04 12:03:37 25 4
gpt4 key购买 nike

我想知道是否可以动态导入通过 npm install 安装的模块。

就像是:

import("{ AsyncStorage } from react-native ???").then((module) => {
// do something with module
});

到目前为止,我发现的所有示例都只是导入自写的 ES 模块......

最佳答案

你应该这样做

// With normal promises
import('react-native').then(({ AsyncStorage }) => {
// Do something with the module
})

// Async/await (You must add this code inside of an async function or use ecmascript module code)
const { AsyncStorage } = await import('react-native')
// Do something with the module

关于javascript - 是否可以动态导入节点模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51155826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com