0
ember 2.5.0을 사용하고 있습니다. 내 응용 프로그램에 파일 업로드 기능이 있습니다. 파일 업로드를 위해 다음 API를 사용하여 Ember-plupload을 업로드하십시오. 파일을 업로드 할 수는 있지만 사용자가 문서 설정에 따라 하나의 파일 만 업로드하기를 원합니다. multiple = "false"은 여러 파일 옵션을 선택하지 못하게 설정해야하지만 대신 파일을 대기열에 추가하는 것은 불가능하지 않습니다. 비슷한 문제에 직면 한 사람이 있습니까?Ember-plupload는 여러 파일 업로드가 작동하지 않음을 비활성화합니다.
또한 큐에서 파일을 제거하기위한 코드 스 니펫을 공유하는 사람이 있으면 좋을 것입니다.
{{#pl-uploader extensions="jpg" multiple="false" for="upload-image" onfileadd="uploadImage"}}
<div class="form-group">
<label>Choose file to import</label> <br/>
<div class="dropzone" id="upload-image" style="width: 80%; height: 100px; border: 2px dashed gray; padding: 0 20px">
<p>
<br/>
{{#if fileInfo}}<div class="alert alert-success">{{fileInfo}}</div>{{/if}}
</p>
</div>
</div>
{{/ 와줘은-업 로더}}
이미 시도했지만 잠금이 작동하지 않습니다. – VelNaga