官方文档
fetch是浏览器自带的不需要下载,返回的是一个,需要将res.json返回出去,res.json也是一个promise.
import React, { Component } from 'react'
export default class index extends Component {
componentDidMount(){
// http://139.9.209.237/herowebapi/power/list
fetch("http://iwenwiki.com/api/blueberrypai/getIndexBanner.php").then(res=> res.json()
).then(data=>{
console.log(data)
})
}
render() {
return (
<div>
我是fetch
</div>
)
}
}