How to search from API based on text inputs in REACT
问题 when i search from API based on keyword,i get all details in API. i need get only details based on the text input from search.. i dont know the problem is in my API or My code... please help me.. import React, { Component } from 'react'; class Search extends Component { constructor(props) { super(props); this.state={ value:'', value2:'' }; this.handleChange=this.handleChange.bind(this); this.crimeChange=this.crimeChange.bind(this); this.search=this.search.bind(this); } handleChange(event){