我一直试图在我的应用上运行星球大战API,但无济于事。所以我从零开始创建了一个完全空的反应应用程序,仅用于测试我的API。 我将状态设置为空数组,然后我获取了api并将状态设置为等于json数据。记录api数据的控制台工作正常,我能够看到所有显示的对象,但是将其设置为状态会破坏事物。 早些时候我试图遍历对象,但它似乎没有用。
到目前为止,我有这个
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
class App extends Component {
constructor(){
super()
this.state = {
jedi: []
}
}
componentDidMount(){
fetch('https://swapi.co/api/people/1/?format=json').then(response => {
return response.json()})
.then(data => {
// Work with JSON data here
this.setState({jedi: data });
}).catch(err => {
console.log(err)
// Do something for an error here
});
};
render() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h1 className="App-title">Welcome to React</h1>
</header>
<p className="App-intro">
{this.state.jedi}
</p>
</div>
);
}
}
export default App;
这是错误:
×
Objects are not valid as a React child (found: object with keys {name, height, mass, hair_color, skin_color, eye_color, birth_year, gender, homeworld, films, species, vehicles, starships, created, edited, url}). If you meant to render a collection of children, use an array instead.
in p (at App.js:37)
in div (at App.js:32)
in App (at index.js:7)
答案 0 :(得分:0)
你不能把这样的对象,最简单的方法是使用
this.setState({jedi: JSON.stringify(data) });
答案 1 :(得分:0)
问题是你是按原样渲染对象,你应该使用this.state.jedi.name或循环渲染它。