我正在构建一个 React Typescript 应用程序,并使用 CKEditor,一个方法给了我这个对象:
当我尝试渲染它时,它给了我这个错误:
有人可以向我解释我做错了什么吗?
这是代码:
export default class Toolbar extends React.Component<IProps, IState> {
public toolbar: ToolbarView | undefined
public componentDidMount() {
this.toolbar = new ToolbarView()
this.toolbar.render()
console.log(this.toolbar.element) // the result is the first screenshot
}
public render() {
return this.toolbar ? this.toolbar.element : null
}
}