如何将ID从一个API传递到另一个API,并获取所需的数据?
下面是我的代码:
handleClick(e){
fetch("http://api.com/product_sub_categories?category_id")
.then(res => res.json())
.then(
(result) => {
this.setState({
isLoaded: true,
product_sub_categories: result.product_sub_categories
});
},
(error) => {
this.setState({
isLoaded: true,
error
});
}
)
}
字符串
1条答案
按热度按时间mcvgt66p1#
你可以使用回勾。
字符串