我想创建一个my指令来读取输入类型=" file"但我在这个问题上失败了。我用这种方式在页面html中编写我的代码:
<body ng-controller="insertController">
<div>
<input type="file" file-model="myFile"/>
</div>
<div>
{{message}}
</div>
</body>
所以我想阅读文件并在{{message}}中显示结果。所以我用这种方式创建了一个指令:
modulo.directive('fileModel', function() {
return {
restrict: 'AEC',
templateUrl: 'insert.html',
link: function(scope, element, attrs) {
scope.message = attrs.fileModel;
}
};
});
此外,我读了我的控制器,但它是空的......
modulo.controller('insertController', function($scope, $http) {
});
如何解决问题?谢谢!