我正在使用ReactJS。
当我运行下面的代码时,浏览器会显示:
Uncaught TypeError:超级表达式必须为null或函数,不能为undefined
任何关于哪里出了问题的提示都会让我感激不尽。
首先是用来编译代码的行:
browserify -t reactify -t babelify examples/temp.jsx -o examples/public/app.js
代码是:
var React = require('react');
class HelloMessage extends React.Component {
render() {
return <div>Hello </div>;
}
}
更新:
在这个问题上在地狱火里燃烧了三天之后,我发现我没有使用react的最新版本。
全球安装:
sudo npm install -g react@0.13.2
在本地安装:
npm install react@0.13.2
确保浏览器使用正确的版本:
<script type="text/javascript" src="react-0.13.2.js"></script>
希望这能挽救别人三天宝贵的生命。
在我的例子中,我使用了一个具有对等依赖关系的npm模块。该错误是由模块的webpack配置中错误的“外部”配置引起的:
externals: {
react: 'react',
react: 'prop-types',
},
它应该是:
externals: {
react: 'react',
['prop-types']: 'prop-types',
},
在我的例子中,使用react-native时,错误是我有
import React, {
AppRegistry,
Component,
Text,
View,
TouchableHighlight
} from 'react-native';
而不是
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
Image,
AsyncStorage
} from 'react-native';
Webpack 4块和哈希与TerserPlugin Uglification
当Webpack通过TerserPlugin(当前版本为1.2.3)使用块和散列并进行缩小和unlification时,就会发生这种情况。在我的例子中,这个错误被缩小到我的供应商的Terser Plugin .[contenthash].js包的丑陋化,它包含了我的node_modules。不使用哈希值时一切正常。
解决方案是在uglification选项中排除bundle:
optimization: {
minimizer: [
new TerserPlugin({
chunkFilter: (chunk) => {
// Exclude uglification for the `vendors` chunk
if (chunk.name === 'vendors') {
return false;
}
return true;
},
}),
],
}
更多信息
这个答案不正确,但对于其他有同样错误的人,我这个愚蠢的错误可能会有帮助。
愚蠢的是,我的问题是通过在类名后面包含()来使用函数符号。
确保语法正确。并且您已经导入和导出了所有具有正确名称和路径的外部组件/模块。
如果你安装了一个新版本的react,这个模板应该可以正常工作:
import React, { Component } from 'react'
class ExampleClass extends Component {
render(){
return(
<div>
</div>
)
}
}
export default ExampleClass