我正在使用Postman测试我的GET请求,并且已经在/ api / users /中获取了值以返回。但是,当我尝试通过请求传递参数时,它将返回每个值,而不是预期的单个值。
我已经做了大量的研究,并且知道我在Postman以及实际代码中都正确地使用了参数。
componentDidMount() {
axios.get('http://localhost:3000/api/users?email=testing@test.com')
.then(response => {
this.setState({ users: response.data });
})
.catch(function (error) {
console.log(error);
})
}
显然,这应该只返回一个数据组,并发送电子邮件至testing@test.com。但是,正如我所说,它将返回所有数据组。