Angular.js $http.Post TypeError: 정의되지 않은 속성 'data'를 읽을 수 없습니다. Angular.js v1.0.6 $http를 만들 때.200 이외의 응답(이 경우는 401)을 투고해 수신한다. $http.post('http://localhost:3030/auth/login', { username: 'username', password: 'password' }) .success(function(data) { // Gets called on a 200 response, but not on a 401 console.log('success'); }) .error(function(err) { // Never gets called & dies with error described b..