我想從本地機器上的JSON文件中獲取數據。但我無法獲取數據。它顯示$ http的一些跨域錯誤。在angularjs中從本地JSON文件中獲取數據
這是我的代碼。
angular.module('myApp',[]).controller('myCtrl', function ($scope, webtest) {webtest.fetch().then(function (data) {$scope.accounttype = data;})}); .factory('webtest', function($q, $timeout, $http) {var Webtest = {
fetch: function(callback) {
return $timeout(function() {
return $http.get('webtest.json').then(function(response) {
return response.data;
});
}, 30);
}
};
return Webtest;});
任何人都請幫助我如何顯示來自本地JSON文件的數據? 在此先感謝。
你能不能加一個小提琴] – Shreyas
你能不能告訴我們具體的錯誤? – xeon48