我正在使用角度js,我必须实现文件上传功能 我正在使用ngf-select,但它不起作用。以下是我的代码段。
<button type="file" accept=".txt" ngf-select="uploadFiles($file, $invalidFiles)" >
<div style="margin-top: -8px;color: #fff;">
<label for="file-upload">Select File</label>
</div>
</button>
答案 0 :(得分:0)
检查角度模块中的ngFileUpload
注入,并尝试避免在html中使用内联css。它应该工作。
var app = angular.module('plunker', [ 'ngFileUpload']); // ngFileUpload is required to include
检查plunker:https://plnkr.co/edit/XCLYjn?p=preview