Babel.js 物料界面:元素类型无效:需要字符串(对于内置组件)或类/函数(对于复合组件),但得到:零

gmxoilav  于 2023-05-04  发布在  Babel
关注(0)|答案(3)|浏览(211)

Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: null. Check the render method of TransitionGroup.
具体来说,这个问题只在我使用material-ui并导入它的任何组件时发生。我不能提供具体的步骤来重现这一点,因为它似乎是一个webpack配置或babel配置,这是一个非常通用的。此外,还有一群其他人谁经历了这个问题已经和我已经尝试了许多解决方案没有成功。这就是为什么我决定也许堆栈溢出社区可以提供一些帮助。
所以首先,我100%准确地认为问题是使用了@material-ui。在我的项目中,我试着像这样导入一个Button
import Button from '@material-ui/core/Button'
使用它就像:

<Button
        onClick={()=>{}}
        size='small'
        variant='outlined'
        color='secondary'
        className='primary-button'>
 This is a Button
</Button>

另外,我已经尝试了不同的导入,如import { Button } from '@material-ui/core'。第一级和第二级进口。第三层已经不行了。没有成功!只需注意,删除Button将100%工作。所以我猜这可能是babel或webpack的配置问题。所以我到处玩和研究了很多,但仍然没有成功!
这是我当前的webpack.config

/**
 * COMMON WEBPACK CONFIGURATION
 */

const path = require('path')
const webpack = require('webpack')
const LoadableWebpackPlugin = require('@loadable/webpack-plugin')
const CleanWebpackPlugin = require('clean-webpack-plugin')
const merge = require('webpack-merge')

module.exports = options => (merge.smart({
  bail: true,
  output: {
    path: path.resolve(process.cwd(), 'build'),
    publicPath: '/'
  },
  module: {
    rules: [
      {
        test: /\.(eot|otf|ttf|woff|woff2)$/,
        use: 'file-loader'
      },
      {
        test: /\.svg$/,
        use: [
          {
            loader: 'svg-url-loader',
            options: {
              // Inline files smaller than 10 kB
              limit: 10 * 1024,
              noquotes: true
            }
          }
        ]
      },
      {
        test: /\.(jpg|png|gif)$/,
        use: [
          {
            loader: 'url-loader',
            options: {
              // Inline files smaller than 10 kB
              limit: 10 * 1024
            }
          },
          {
            loader: 'image-webpack-loader',
            options: {
              mozjpeg: {
                enabled: false
                // NOTE: mozjpeg is disabled as it causes errors in some Linux environments
                // Try enabling it in your environment by switching the config to:
                // enabled: true,
                // progressive: true,
              },
              gifsicle: {
                interlaced: false
              },
              optipng: {
                optimizationLevel: 7
              },
              pngquant: {
                quality: '65-90',
                speed: 4
              }
            }
          }
        ]
      },
      {
        test: /\.(mp4|webm)$/,
        use: {
          loader: 'url-loader',
          options: {
            limit: 10000
          }
        }
      }
    ]
  },
  plugins: [
    new CleanWebpackPlugin(['build'], {
      root: process.cwd(),
      verbose: true,
      dry: false
    }),
    new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
    new LoadableWebpackPlugin({ writeToDisk: true })
  ],
  resolve: {
    modules: [
      path.join(process.cwd(), 'sass'),
      path.join(process.cwd(), 'node_modules'),
      path.join(process.cwd(), 'src')
    ],
    extensions: ['.json', '.js']
  },
  target: 'web' // Make web variables accessible to webpack, e.g. window
}, options))

这是我现在的babel.config.js

function isWebTarget(caller) {
  return Boolean(caller && caller.target === 'web')
}

module.exports = (api) => {
  const web = api.caller(isWebTarget)
  return {
    presets: [
      [
        '@babel/preset-env',
        {
          loose: true,
          targets: !web ? { node: 'current' } : {
            esmodules: true
          },
          modules: 'commonjs'
        }
      ],
      '@babel/preset-react'
    ],
    plugins: [
      '@babel/plugin-syntax-dynamic-import',
      '@babel/plugin-proposal-function-bind',
      ['@babel/plugin-proposal-decorators', { legacy: true }],
      ['@babel/plugin-proposal-class-properties', { loose: true }],
      ['babel-plugin-import', {
        libraryName: '@material-ui/core'
      }, 'core'],
      ['babel-plugin-import', {
        libraryName: '@material-ui/icons'
      }, 'icons'],
      [
        'transform-imports',
        {
          '@material-ui/core': {
            // Use "transform: '@material-ui/core/${member}'," if your bundler does not support ES modules
            'transform': '@material-ui/core/${member}',
            'preventFullImport': true
          },
          '@material-ui/icons': {
            // Use "transform: '@material-ui/icons/${member}'," if your bundler does not support ES modules
            'transform': '@material-ui/icons/${member}',
            'preventFullImport': true
          }
        }
      ],
      '@babel/plugin-transform-async-to-generator',
      '@babel/plugin-proposal-object-rest-spread',
      '@loadable/babel-plugin',
      web && 'react-hot-loader/babel'
    ].filter(Boolean)
  }
}
2wnc66cl

2wnc66cl1#

唯一让我印象深刻的是,您在第一个预置中使用“commonjs”配置了babel。尝试将其更改为“auto”或es6模块。
不同之处在于,在commonjs中,应该使用const a = require('some-module')导入
在ES6中是:import a from 'some-module'
您可以通过将导入更改为来测试是否是这种情况:
const Button = require('@material-ui/core/Button')

const Button = require('@material-ui/core/Button').default
如果它工作,尝试从第一个预设中删除“模块”或将其更改为“自动”https://babeljs.io/docs/en/babel-preset-env#modules

42fyovps

42fyovps2#

我可以在webpack.config上解决这个问题
对于其他可能遇到同样问题的人,在我的webpack.config
出发地:

resolve: {
    modules: [
      path.join(process.cwd(), 'sass'),
      path.join(process.cwd(), 'node_modules'),
      path.join(process.cwd(), 'src')
    ]
}

收件人:

resolve: {
    modules: [
      path.join(process.cwd(), 'sass'),
      'node_modules',
      path.join(process.cwd(), 'src')
    ]
}

注意node_modules上的部分,您只需要删除path.join或任何路径分辨率。整个周末我都在绞尽脑汁想这个问题,我只需要换一句话就行了。(典型的开发者生活)。顺便说一句,甚至不是这个问题让我想到了这个解决方案。所以像can't resolve dom-helpers和其他多个库版本与子模块冲突,如果你使用webpack,你需要检查你的webpack模块分辨率。

643ylb08

643ylb083#

将react和react-dom升级为18后的问题排序

相关问题