注意:此帖已在React不支持ES6(v12)时发布。
我有一个ES6课程:
class BaseClass {
getInitialState(){
return {message: 'Hello!'};
}
render() {
return (
<div>
<div>{this.state.message}</div>
</div>
)
}
}
我可以使用此表达式在源代码中导出ES6(来源:react ES6 browserify)
export default React.createClass(BaseClass.prototype)
这很好用。现在我想使用ES6继承扩展我的BaseClass
类:
class ExtendedClass extends BaseClass{
getInitialState(){
return {message: "Hello! I'm an extension"};
}
}
但是当我在React.createClass
课程上调用ExtendedClass
时,我遇到以下异常:
Invariant Violation: ReactCompositeComponentInterface: You are attempting to define `constructor` on your component more than once. This conflict may be due to a mixin.
我知道React 0.13应该更适合ES6,但有没有办法解决这个问题?
编辑:
我正在使用Traceur来编译我的ES6类。 ExtendedClass
的输出如下所示:
function ExtendedClass() {
"use strict";
if (BaseClass !== null) {
BaseClass.apply(this, arguments);
}
}
for (BaseClass____Key in BaseClass) {
if (BaseClass.hasOwnProperty(BaseClass____Key)) {
ExtendedClass[BaseClass____Key] = BaseClass[BaseClass____Key];
}
}
____SuperProtoOfBaseClass = BaseClass === null ? null : BaseClass.prototype;
ExtendedClass.prototype = Object.create(____SuperProtoOfBaseClass);
ExtendedClass.prototype.constructor = ExtendedClass;
ExtendedClass.__superConstructor__ = BaseClass;
ExtendedClass.prototype.getInitialState = function() {
"use strict";
return {message: "Hello! I'm an extension"};
};
React.createClass(ExtendedClass.prototype);
答案 0 :(得分:6)
关于在ES6中编写ReactJS的帖子很棒。
http://ilikekillnerds.com/2015/02/developing-react-js-components-using-es6/
无论如何,在使用ES6时,您不能使用React.createClass。你只需要创建扩展React.Component
的类同样在ES6中,你没有getInitialState而不是defaultProps。它在构造函数中使用this.state替换为赞成。
查看此示例。我们假设你有Card组件和欢迎面板,它扩展了Card组件。
代码如下:
卡组件:
import React , { Component } from 'react'
class Card extends Component {
constructor(props){
super(props);
}
render() {
return (
<div className="card">
<div className="card__content">
<label>{this.props.content}</label>
</div>
</div>
)
}
initPanel(el,content){
React.render( <Card content={content} />, el);
}
}
export default Card;
欢迎面板组件:
import React from 'react';
import Card from 'components/card.component';
class WelcomePanel extends Card {
constructor(props){
super(props);
this.state = {
content: "Welcome Panel",
index: 0
}
}
componentClicked(){
this.setState({content: "Component Clicked", index: this.state.index + 1})
}
render() {
return (
<div className="welcome-panel" onClick={this.componentClicked.bind(this)}>
<Card content={`${this.state.content} ${this.state.index > 0 ? this.state.index : ''} ${this.state.index > 0 ? 'times' : ''} `} />
</div>
)
}
initPanel(el,content){
React.render( <WelcomePanel />, el);
}
}
export default { Class: WelcomePanel }
答案 1 :(得分:1)
以下是我找到的解决方法:
在React.js
内部库中,我更新了ReactCompositeComponentInterface
以为constructor
添加自定义策略(据我所知,无法正确自定义此'界面'):
var ReactCompositeComponentInterface = {
/**
* An array of Mixin objects to include when defining your component.
*
* @type {array}
* @optional
*/
mixins: SpecPolicy.DEFINE_MANY,
/**
* Custom policy for 'constructor'
*/
constructor: SpecPolicy.DEFINE_MANY,
...
}
然后在ExtendedClass
中,即使您没有自定义它们,也必须重新定义每个方法:
class ExtendedClass extends BaseClass{
getInitialState(){
return {message: "Hello! I'm an extension"};
}
/** required */
render(){
return super.render();
}
}
我对这个肮脏的解决方案不满意,但它会等待0.13版本,希望能够解决这些问题。