React + fetch API + 百度地图api + 跨域 填坑
做项目遇到一个百度地图api 的跨域问题。由于使用fetch ,在调用类似
http://api.map.baidu.com/geocoder/v2/callback=renderReverse&location=39.983424,116.322987&output=json&pois=1&ak=您的ak
的时候,不可避免的出现了跨域问题。
fetch(baseUrl + 'location=39,116&output=json&ak=您的ak&callback=showLocation',{
mode:'no-cors',
// credentials: 'include',
headers:{ Accept: 'application/json',}
})
.then( response => response.json() )
// .then(data => console.log(dat