如何获取React组件的模块导入路径?

问题描述 投票:0回答:1

我正在使用 Bun,我想从 React 组件获取模块路径。

我正在寻找这样的东西:

const myComponent = <MyComponent />

const myComponentPath = myComponent.getPath()

显然我的例子不起作用。

如何获取路径以便稍后动态导入此模块?

例如:

const { default: MyComponent } = await import(myComponentPath)

const myComponent = <MyComponent />
javascript reactjs bun
1个回答
0
投票

如果您的意思是在运行时的代码中,则不能。模块说明符(路径)不存储在从模块导出的组件上的任何位置。

© www.soinside.com 2019 - 2024. All rights reserved.