import React from 'react'; import ReactDOM from 'react-dom'; import fetchJsonp from 'fetch-jsonp'; class App extends React.Component{ state ={ isLoading:false, data:null }; fetchData = async() =>{ fetchJsonp('https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su?wd=a',{ jsonpCallback:'cb' }).then(res=>{ return res.json(); }).then(data=>{ console.log(data); }) }; render(){ let {isLoading, data} = this.state; return (