0
static propTypes: {
        arrayOfLines: PropTypes.arrayOf(PropTypes.number)
    };

在 arrayOf( < 在那个括号它给了我一个语法错误,但是看看文档似乎它应该是正确的,只是 PropTypes.array 似乎也可以正常工作,或者数字

我的包括:

import React, {Component, PropTypes} from 'react';
import ReactDOM from 'react-dom';
import CodeLine from './CodeLine';
import GridSpace from './GridSpace';

export default class Grid extends React.Component{

    static propTypes: {
        arrayOfLines: PropTypes.arrayOf(PropTypes.number)
    };

    renderGridSpace(x,y) {
        const gray = (x + y) % 2 === 1;

        const [spaceX, spaceY] = this.props.arrayOfLines
    }

    render() {
        const { gray } = this.props;
        const fill = gray ? 'gray' : 'white';
        const stroke = gray ? 'white' : 'gray';
        console.log(PropTypes);
        return (
            <div style={{ 
            backgroundColor: fill,
            color: stroke,
            width: '100%',
            height: '100%'
             }} >
                {this.props.children}
            </div>
        );
    }

}

这实际上只是来自 reactdnd 演示

4

1 回答 1

3

根据stage-1提案,该static属性后面=没有:

static propTypes = {
    arrayOfLines: PropTypes.arrayOf(PropTypes.number)
};

参考:

于 2015-12-04T23:15:04.870 回答