我是React的新手,我正在创建一个网站,用户可以在其中搜索查询并显示结果。

我有一个名为的组件:Searchbar,其中包含两个功能:

1)
用户写一个查询,当用户输入时,查询通过axios POST请求发送到后端。

2)后端搜索相关查询,并通过axios GET请求将结果发送回去。

因此,顺序为:postQuery()-->getQueryResult(),因此我认为postQuery()会创建一个承诺,如果解决该承诺,则允许getQueryResult()运行。
但是我得到:


  
    TypeError:无法读取未定义的属性“ then”
    
    第38行出错:返回postQuery(query).then(()=> getQueryResult());
  


我的代码是:

function Searchbar() {

    const [query, setQuery] = useState("");
  const [results, setResults] = useState(["myemptyinitiallist"]);

  function postQuery(query) {
    var myParams = {
         data: query
    }
    axios.post('http://localhost:5000/api/query', myParams)
      .then(function(response){
        console.log("Yes, it sends the query in JSON format to Flask");
      })
      .catch(function(error){
        console.log(error, "Error on AXIOS post");
      });
  } // Enf of postQuery

  function getQueryResult() {
    (axios.get('http://localhost:5000/api/query')
    .then(function (response) {
      setResults(response.data); //set the value
      console.log(results)
    }))
  } // End getQueryResult()

    function handleEnter(query){
        if (query != "") {
      return postQuery(query).then(() => getQueryResult());
    } else {
        alert("The search query cannot be empty")
      }
  } // End of function handleEnter()


    return(
    <div>
        <SearchBar
            onChange={(event) => setQuery(event)}
            onRequestSearch={() => handleEnter(query)}
            style={{
                marginTop: 200,
                marginLeft: 'auto',
                marginRight: 'auto',
                maxWidth: 800,
            }}
        />
      <ResultList/>
</div>
    )
}


export default Searchbar;

最佳答案

postQuery中没有return语句,因此它返回undefined
另外,默认情况下,catch子句履行其返回的promise。为了也可以捕获返回承诺,请在catch回调中重新抛出错误。

尝试

  function postQuery(query) {
    var myParams = {
         data: query
    }
    return axios.post('http://localhost:5000/api/query', myParams)
      .then(function(response){
        console.log("Yes, it sends the query in JSON format to Flask");
      })
      .catch(function(error){
        console.log(error, "Error on AXIOS post");
        throw error; // don't fulfill returned promise
      });
  } // End of postQuery

09-18 13:02