渲染搜索数据时未捕获的不变违规

时间:2016-04-10 05:11:06

标签: javascript node.js amazon-web-services reactjs rendering

我正在尝试使用React实现搜索。我的逻辑流程有2个问题:

  • 将输入设为Params
  • 渲染我从服务器获取的数据

当我正在玩它时,我遇到了错误消息

  

Uncaught Invariant Violation输入是一个void元素标记,但不能   拥有children或使用props.dangerouslySetInnerHTML

这是我的代码:

import React, { PropTypes } from 'react';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
import s from './Home.scss';
import AWS from 'aws-sdk';

var GetTech = React.createClass({
  render: function() {
    var createItem = function(item) {
      var csd = new AWS.CloudSearchDomain({
        endpoint: 'mycloudsearch.amazonaws.com',
        region: 'us-east-1'
      });
      var params = {
        query: {this.state.text}
      }
      csd.search(params, function (err, data) {
        if (err) console.log(err, err.stack);
        else {
          console.log(JSON.stringify(data));
        }
      });
    }
    return (
      {this.props.items.map(crateItem)}
    )
  }
});

var FilteredTechs = React.createClass({
  getInitialState: function() {
    return {
      text: '',
      items: []
    };
  },
  handleChange: function(event) {
    console.log(event);
    this.setState({
      text: event.target.value
    });
  },
  handleSearch: function(event) {
    event.preventDefault();
    this.setState({
      items: this.props.items,
      text: ''
    });
  },
  render: function() {
    return (
      <div>
        <form onSubmit={this.handleSearch}>
          <input
            type="text"
            value={this.state.text}
            onChange={this.handleChange}
          />
          <input type="button">Search</input>
        </form>
        <GetTech items={this.state.items} />
      </div>
    );
  }
});


function Home({ techs }) {
  <FilteredTechs />
}

Home.propTypes = {
  techs: PropTypes.arrayOf(PropTypes.shape({
  })).isRequired,
};

export default withStyles(Home, s);

我是React的新手。请按照您的意愿通知我,非常感谢您的提示和意见。非常感谢!

2 个答案:

答案 0 :(得分:10)

错误很明显:input s必须是void元素;也就是说,他们必须自我关闭。

此语法无效:<input type="button">Search</input>

您想要:<input type="button" value="Search" />

或者:<button>Search</button>

答案 1 :(得分:0)

输入是自动关闭标记,但是在某些情况下,您可以使用missRanger 您可以安装reactstrap软件包,然后导入并使用<Input></Input>标签而不是<Input></Input>。 另外,您可以检查链接:https://reactstrap.github.io/components/input-group/ 另外,您可以检查此输入类型:reactstrap Forms