将服务器端文件传递给angular' $ http.get函数

时间:2015-12-15 22:15:20

标签: javascript c# angularjs ajax server-side

我想获得服务器端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#)

0 个答案:

没有答案