今天想尝试下 vue.js ,就拿 V2EX 练手, fetch 不到数据啊, response.status 都是 0 啊,难道是我写错了?最后无奈的直接用了 json 文件...
demo 可以看这里( https://github.com/xwartz/vue-v2ex)
fetch('https://www.v2ex.com/api/topics/latest.json', {
method: 'GET',
headers: {
'Content-Type': 'application/json;charset=UTF-8'
},
mode: 'no-cors'
}).then(res => {
if (res.status >= 200 && res.status < 300) {
return Promise.resolve(res)
} else {
return Promise.reject(new Error(res.statusText))
}
}).then(res => {
return res.json()
}).then(data => {
return data
}).catch(err => {
console.log(err)
})
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.