8

我有一个包含组件路径的 path.json 文件

// path.json

{
  "main": "./login/index.js",
  "paths": [
    {
      "name": "login",
      "path": "./login/index.js",
      "image": ""
    }
  ]
}

我想在本机反应中动态加载'./login/index.js'文件并渲染这个特定文件

我目前的实现

const MyComponent = createLazyContainer(() => {
  const componentPath = PathJson.main; // ./login/index.js
  return import(`${componentPath}`); //import error here @ line 7
});

export default MyComponent;

我收到以下错误:

第 7 行的无效调用:import("" + componentPath)

4

5 回答 5

8

人们在线程中告诉您的内容是正确的,但我想添加一种可能的解决方案。所有导入/要求都在编译时解决,而不是在您尝试执行的运行时解决。在您运行应用程序时,如果您尚未导入文件,则无法使用它们。

有一种解决方法,假设您事先知道所有可能会执行类似工厂操作的文件:

   const possiblePaths = {
     'one': require('path/to/file/1),
    'two': require('path/to/file/2)
}

funtion(type){
    return possiblePaths[type]
}

然后你以某种方式使用它:

render(){
   const MyComponent = function('one')

  return <MyComponent/>
}

这或多或少是伪代码,我不能马上工作,但希望你能明白。您需要存储对您可能需要的每个导入的引用,然后不要使用导入,使用在编译时为您创建的引用。

于 2020-03-12T17:27:48.987 回答
2

实际上, React Native开发关注点不像Web开发。

正因为如此,在 react-native 项目的生产中延迟加载根本就不是那么重要。只需导入您想要的任何内容,然后在项目的任何文件中使用它们。所有这些都在生产包中,而且根本不重要。

所以对于这个问题,我更喜欢有一个帮助文件来收集所有可选择的库并导出它们:

// helper file
export { default as Index } from './Login';
export { default as OtherComponent } from './OtherComponent';

然后当你想使用:

import { Index, OtherComponent } from 'helper';

~~~

render() {
  const MyComponent = someCondition ? Index : OtherComponent;

  return (
    <MyComponent />;
  );
}
于 2020-03-16T05:51:10.710 回答
1

在 React Native 中,所有正在导入的文件都捆绑在一起,只有这些文件可以动态导入。

假设你有三个文件,index.js如果你只导入了React Native 将只捆绑这两个文件离开。test_1.jstest_2.jstest_1.jsindex.jstest_2.js

因此,即使动态导入在 React Native 中有效,但要回答您的问题,但由于这些文件不是捆绑包的一部分,您无法导入它们。

于 2020-03-06T10:55:08.957 回答
1

解决方案:

const allPaths = {
  path1: require('file path1').default,
  path2: require('file path2').default
};
 render(){
  const MyComponent = allPaths["path1"];

  return <MyComponent/>
 }


于 2020-03-16T13:40:36.027 回答
0

我曾经遇到过类似的情况,我需要通过变量进行导入,但这仅限于在组件内导入组件并且它使用代码拆分(编辑:我正在寻找解决方案而不依赖于代码拆分,我刚刚意识到问题中有一个 react-native 标签,我不认为代码拆分是 RN 中的好选择)。我不确定我的方法对你有多大帮助,但这里有。

旁注:

  • 包含index.js(jsx|ts|tsx)文件的导入文件夹应自动解析为该index文件。
  • 从通常导入from './login/index.js'会引发“未找到模块”错误。要么导入from './login/index',要么from './login但我更喜欢最后一个,因为它是最短和最简单的。


path.json

{
  "main": "./login", // '.js' is removed
  "paths": [
    {
      "name": "login",
      "path": "./login/index.js", // Not sure what this is for, but if necessary, remove the '.js' here as well
      "image": ""
    }
  ]
}


MyComponent.js

import React, { lazy, Suspense } from 'react'
import PathJson from './path'

// 1. We need a UI to show while component is being loaded
const Loader = () => <div>{'Loading...'}</div>

// 2. We need a fallback UI if component is not found
const DocUnavailable = () => <div>{'We\'re sorry, but this document is unavailable.'}</div>

// 3. Create a resolver function ('resolver' is just a name I give)
function resolveImport(pathToComponent, FallbackComponent) {
  let componentFound = false
  let RenderComponent = () => <FallbackComponent /> // Assign fallback first
  try {
    if (require.resolve(pathToComponent)) {
      componentFound = true
    }
  } catch (e) { } // Kinda hacky, if you don't mind, but it works
  if (componentFound) {
    // If found, replace fallback with the valid component
    RenderComponent = lazy(() => import(pathToComponent))
  }
  return RenderComponent
}

// 4. Finally, implement it in a component
class MyComponent extends React.Component {

  render() {
    const componentPath = PathJson.main
    const RenderComponent = resolveImport(componentPath, DocUnavailable)
    return (
      <Suspense fallback={<Loader />}>
        <RenderComponent />
      </Suspense>
    )
  }

}

export default MyComponent


参考:

于 2020-03-16T03:18:25.800 回答