也许这是一个非常新手的问题,但我花了很多时间来寻找这样做的好方法,但我没有找到方便的答案。我正在尝试对rest api进行简单的调用,并且我想传递一个带有附加到字符串的GET请求的值。像 url/foo 其中 foo 是参数。我有一个查询变量,我想将它附加到获取请求的 url 字符串的末尾。先感谢您。
class About extends React.Component {
constructor(props) {
super(props);
this.state = {
products: [],
filteredItems: [],
user: {},
query: '' <-- query variable to be appended to the end of the get request
};
}
componentDidMount() {
fetch(`'myurl/${this.state.query}'`) <-- i want to append the variable at the end of the string ??
.then(res => res.json())
.then((result) => {
console.log(result);
this.setState({
products: result,
filteredItems: result
});
}
)
}
queryChange = (evt) => {
this.setState({query: evt.target.value}) <-- update the variable state from an event
}
qq_笑_17
慕姐4208626
撒科打诨
相关分类