我想获得服务器端JSON文件并在AJAX get方法中使用它。一旦我们有了文件,我就能在网格中显示。这就是它的功能。
在我给出2和4反斜杠之前,它不会识别位置
$http({
method:'GET',
url: '\\\\sample.dce.com\\data\\ping.json'
})
.then(function (res) {
$scope.gridOptions.api.setRowData(res.data);
});
但是,我收到如下错误
XMLHttpRequest无法加载文件://sample.dce.com/data/ping.json。交叉源请求仅支持协议方案:http,数据,chrome,chrome-extension,https,chrome-extension-resource。
有人可以帮我演示如何使用ajax调用获取前端的服务器端文件(使用c#)