我的问题是关于如何在 render return() 中显示数组结果.
我对 API 进行了提取,现在我得到了存储在数组中的结果.我需要显示此结果,但我尝试在返回中使用 for{},但它不起作用,我还尝试使用 .map 并且 map 未定义
.
fetch(url + '/couch-model/?limit=10&offset=0', {方法:'GET',标题:{'内容类型':'应用程序/json','接受': '应用程序/json','授权':'JWT' + (JSON.parse(localStorage.getItem('token')).token)}}).then(res => {如果(解决){返回 res.json();} 别的 {抛出错误(res.statusText);}}).then(json => {这个.setState({模型:json.results}, () =>{/*console.log('modelosJSON: ', json);*