简体   繁体   English

json文件未在服务器上加载,但可在本地工作-AngularJs

[英]json file not loading on server but works locally - AngularJs

I am trying to load data from data.json using angularjs. 我正在尝试使用angularjs从data.json加载数据。

var app= angular.module("MyApp", []);

app.controller("MyFunction", ['$scope','$http', function($scope, $http)
        {    
            $http.get('js/data.json').success (function(data){
                $scope.mydata = data;
        });

        }]
);

data.json loads the content locally but not on server. data.json在本地加载内容,但不在服务器上加载。 Please help. 请帮忙。

请确保您在服务器设置中将json作为有效的允许的mime类型。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM