开发者问题收集

TypeError:无法使用 React js 读取未定义的属性‘0’

2021-08-22
148

因此,我正在构建一个字典库,尝试使用 Axios 获取 API 数据,一切正常,但有时它会对某些单词抛出 “TypeError:无法读取未定义的属性‘0’ ” 。可能是什么问题?因为当我尝试获取某些单词的含义时,它工作正常,但对于某些单词,它会抛出错误。代码如下

      function App() {    
    const [mapvalue, setMapValue] = useState([])

        const reqLibrary = () => {
            axios.get(dictionaryapi)
            .then((respone) => {
            setMapValue(respone.data.def[0].tr)
            //console.log(respone.data.def[0].tr[0].mean)
        })
      }

      return (
        </div>
      <button onClick={reqLibrary}> Get Words </button>
      <ul>
        {mapvalue.map((response) => (
          <li> {response.mean[0].text} </li>
        ))}
      </ul>
    </div>
     )

}
1个回答

您应该进行空值检查。这会对您有所帮助。

setMapValue(respone?.data?.def?.[0]?.tr)

以这种方式进行空值检查称为 Optional_chaining

了解有关 Optional_chaining 的更多信息。

Amruth
2021-08-22