我正在尝试运行本地文件路径上的 html 文件。在我的 html 页面中,它检索一些 json 数据。在 google chrome 上运行它时,它显示没有记录并显示错误,因为“跨源请求仅支持协议方案:http、data、chrome、chrome-extension、https”。我想在未通过 LAN 连接的多个系统上运行它。所以我不能通过网络服务器运行文件。还有其他可能吗?请告诉我。提前致谢。
new Vue({
el:"#mytable",
ready: function() {
var json = (function () {
var json = null;
$.ajax({
'async': false,
'global': false,
'url': 'sii.json',
'dataType': "json",
'success': function (data) {
json = data;
}
});
return json;
})();
this.tableData = json;
}
data: {
columns: ['Source','Place'],
tableData: [],
options: {
perPageValues: [80,100],
headings: {
},
templates: {
}
}
}
});