json 如何在reactJS中使用id从API中获取数据?

fhity93d  于 12个月前  发布在  React
关注(0)|答案(1)|浏览(91)

如何将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
        });
      }
    )
}

字符串

mcvgt66p

mcvgt66p1#

你可以使用回勾。

handleClick(e){
  fetch(`${BASE_PATH}/product_sub_categories?category_id=${e.target.value}`)
  .then(res => res.json())
  .then(
    (result) => {
      this.setState({
        isLoaded: true,
        product_sub_categories: result.product_sub_categories
      });
    },
    (error) => {
      this.setState({
        isLoaded: true,
        error
      });
    }
  )
}

字符串

相关问题