fetch('./dist/basement_prod_data.json')
.then((response) => {
return response.json()
}).then(value => {
console.log(value)
}).catch(function(e){
console.log('erroe:' + e.toString());
})
把远程的json数据,保存成本地文件,访问的时候,会报错
Fetch API cannot load file:///F:/zhangJG/data-view-vue/data-visualization/touch/dist/basement_prod_data.json. URL scheme must be "http" or "https" for CORS request.
这里就不能改成访问本地文件吗?只能是远程数据吗?