gpt4 book ai didi

java - 如何在reactJS的get请求中设置参数

转载 作者:行者123 更新时间:2023-12-01 17:45:27 24 4
gpt4 key购买 nike

也许这是一个非常新手的问题,但我花了很多时间来寻找一个好的方法来做到这一点,但我没有找到方便的答案。我正在尝试对 Rest api 进行简单调用,并且希望传递一个值,并将 GET 请求附加到字符串中。就像 url/foo 一样,其中 foo 是参数。我有一个查询变量,我想将其附加到 get 请求的 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
}




最佳答案

去掉 'myurl/${this.state.query}' 中的多余引号 (')

关于java - 如何在reactJS的get请求中设置参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55892262/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com