【发布时间】:2019-01-08 23:51:24
【问题描述】:
我最近将我的 babel 版本升级到了最新版本。更新后,我的反应应用程序中的 babel 无法识别普通类,并且我遇到了错误。
Uncaught (in promise) TypeError: Cannot call a class as a function
.babelrc
{
"presets": [
"env",
"react"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
}
我的应用中的 babel 相关库:
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1"
babel 不理解这个类
CRUDTree.js
const resourceBoxWidth = 225;
const resourceBoxHeight = 85;
const halfBoxWidth = resourceBoxWidth / 2;
const halfBoxHeight = resourceBoxHeight / 2;
const urlLeftMargin = 10;
const urlFontSize = 12;
const fullPathFontSize = 10;
export default class{
static resourceBoxWidth() { return resourceBoxWidth; }
static resourceBoxHeight() { return resourceBoxHeight; }
static halfBoxHeight() { return halfBoxHeight; }
static halfBoxWidth() { return halfBoxWidth; }
}
APITree.js
import React, { Component } from 'react';
import CRUDTree from './CRUDTree';
class extends Component{
render(){
return(
<CRUDTree data={
[
this.state.treedata,
this.onClick,
{
x: this.state.offsetX,
y: this.state.offsetY
}
]}
width={400} height={500}
options={{
border: "2px solid black",
margin: {
top: 0,
bottom: 0,
left: 50,
right: 0
}
}
} />
)
}
}
【问题讨论】:
-
我认为问题在于你调用这个类的方式,你能告诉我们吗?
-
当然。我更新了我的问题。请检查
标签: reactjs ecmascript-6 environment-variables babeljs babel-loader