Angular Resources Service를 통한 JSON 읽기 사용방법angular-resources.js서비스를 통해 JSON 파일을 읽는 것? 저는 테스트 목적으로 아주 기본적인 Angular 앱을 작업하고 있으며 지금 JSON 파일에서 데이터를 읽으려고 하고 있습니다.서버 기반 데이터 스토어를 이동할 때 더 쉽게 교체할 수 있도록 이 코드를 서비스에 배치합니다. 나의App그리고.App.controller선언문은 다음과 같습니다. 'use strict'; // create module for custom directives var App = angular.module('App', ['jsonService']); // controller business logic App.controller('Ap..