答案 0 :(得分:0)
您可以使用javascript fetch API
获取示例
fetch(`https://jsonplaceholder.typicode.com/posts?key=${key}&results=${results}`)
.then((res) => { return res.json() })
.then((data) => {
console.log(data)
});
})
}
POST示例
let key = 'key'
let results = 12;
fetch('https://jsonplaceholder.typicode.com/posts', {
method: 'POST',
headers : new Headers(),
body:JSON.stringify({key: key, results: results})//use property short hand here
}).then((res) => res.json())
.then((data) => console.log(data))
.catch((err)=>console.log(err))
答案 1 :(得分:0)
您已经收到回复,并将响应映射到状态'结果'。您只需编写" this.state.results"即可显示数据。