我的flickr公共API存在问题,此代码:
fetch('https://api.flickr.com/services/feeds/photos_public.gne?format=json&nojsoncallback=1&per_page=9&tags=Porsche', {
headers: {
'Accept' : 'application/json',
'Content-Type' : 'application/json'
},
mode: 'no-cors',
})
.then(data => {
return data.json();
})
在浏览器控制台中返回Unexpected end of input
。这段代码有什么问题?