渲染组件时如何利用点表示法?

时间:2017-07-05 04:07:29

标签: reactjs ecmascript-6 react-jsx es6-modules

我有一个简单的组件,它应该将不同类型的字段呈现到我的表单组件中:

import React from "react";

export default class Field extends React.Component {

  render() {
    switch (this.props.type) {
      case 'textarea': {
        return (
          <div className="col-xs-12">
            <textarea
              placeholder={this.props.placeholder}
              name={this.props.name}
            >
            </textarea>
          </div>
          )
      }
      case 'text': {
        return (
          <div className="col-md-6 col-lg-4">
            <input
              type="text"
              placeholder={this.props.placeholder}
              name={this.props.name}
            />
          </div>
        )
      }
    }
  }
}

我在我的表单组件中使用此组件,如下所示:

export default class SubmitForm extends React.Component {

  render() {
    return (
        .
        .
        .
        <Field
          type="text"
          placeholder="something"
          name="something"
        />
        <Field
          type="textarea"
          placeholder="another"
          name="othername"
        />
        .
        .
        .
    )
  }
}

我想到的是以某种方式实现我的字段组件,以便能够使用点符号,如Using Dot Notation for JSX components中所解释的那样,我已经看到了许多其他库,我希望能够像这样使用这个组件:

<Field.Text name="sth" placeholder="sth" />
<Field.TextArea name="other" placeholder="other stuff" /> 

但我不能按照React docs中提到的方式去做。我怎么能这样做?

3 个答案:

答案 0 :(得分:7)

只需创建单个组件并将其导出为名称:

//Field.js
class TextArea extends React.Component {
  ...
}

class Text extends React.Component {
  ...
}

export { Text, TextArea };

然后从模块中导入所有名称:

import * as Field from './path/to/Field.js';

或者如果您更喜欢导出这样的默认对象(这正是文档中的示例所做的,只是以不同的方式):

export default { Text, TextArea };

将使用object shorthand properties并导出默认成员 - 对象文字。然后你可以这样导入它:

import Field from './path/to/Field.js';

最后:

<Field.TextArea ... />

或者,要删除点符号(使用默认导出选项不能执行此操作!):<​​/ p>

import { Text, TextArea } from './path/to/Field.js';

<Text ... />
<TextArea ... />

当然,完全按照React文档,您可以使用类表达式:

const Field = {
  Text: class Text extends React.Component { //you can omit the class name here
    //can be stateless functional component if you don't need state
  },
  TextArea: class TextArea extends React.Component {

  }
}

export default Field;

然后导入为默认成员并使用点表示法。

答案 1 :(得分:0)

export default class Field extends React.Component {

  render() {
    switch (this.props.type) {
      case 'textarea': {
        return (
          <div className="col-xs-12">
            <textarea
              placeholder={this.props.placeholder}
              name={this.props.name}
            >
            </textarea>
          </div>
          )
      }
      case 'text': {
        return (
          <div className="col-md-6 col-lg-4">
            <input
              type="text"
              placeholder={this.props.placeholder}
              name={this.props.name}
            />
          </div>
        )
      }
    }
  }
}

按照以下方式进行操作

const Field = {
    text: function(){
      // your text code
    }
}

export default Field;

他们在facebook反应文档中提到了相同的方式。您可以返回包含函数的对象而不是组件。

答案 2 :(得分:0)

只需按照文档操作即可。

const Field = {
  Text: function Text(props) {
    return <div className="col-md-6 col-lg-4">
            <input
              type="text"
              placeholder={this.props.placeholder}
              name={this.props.name}
            />
          </div>;
  },
  Textarea: function Textarea(props) {
    return <div className="col-xs-12">
            <textarea
              placeholder={this.props.placeholder}
              name={this.props.name}
            >
            </textarea>
          </div>;
  }
}

然后当你的点数使用

<Field.Text placeholder="something" name="something" />