Trandent API
POST
COMMUNITY
angularjs input type중 file에서는 ng-change를 사용 할 수 없다.
그래서 onchage를 통해서 함수를 호출 해야됨
html
<input type="file" onchange="angular.element(this).scope().함수명()" >
컨트롤러
function ctrl(){
$scope.함수명 = function(){
alert();
}
위와같이 호출 할 수 있음.