나는 각도가 처음입니다. 이 필드에서 '변경'이 발생할 때마다 HTML '파일'필드에서 업로드 된 파일 경로를 읽으려고합니다. 'onChange'를 사용하면 작동하지만 'ng-change'를 사용하여 각도 방식으로 사용하면 작동하지 않습니다.
<script>
var DemoModule = angular.module("Demo",[]);
DemoModule .controller("form-cntlr",function($scope){
$scope.selectFile = function()
{
$("#file").click();
}
$scope.fileNameChaged = function()
{
alert("select file");
}
});
</script>
<div ng-controller="form-cntlr">
<form>
<button ng-click="selectFile()">Upload Your File</button>
<input type="file" style="display:none"
id="file" name='file' ng-Change="fileNameChaged()"/>
</form>
</div>
fileNameChaged () 가 호출하지 않습니다. Firebug에도 오류가 표시되지 않습니다.