第一个按钮,只是来启动input的。i...">
美文网首页
点击按钮上传文件

点击按钮上传文件

作者: 价值投机168 | 来源:发表于2020-12-04 11:23 被阅读0次

    <button style="min-width:86px"
    (click)="fileInput.value=null;fileInput.click()">{{'GLOBAL.UPLOAD' | translate}}</button>
    <input type="file" #fileInput (change)="uploadFile(fromBox.selectedData['Type'])" style="display:none"
    [accept]="*.csv"
    [multiple]="fromBox.selectedData && profileTypeService.findTypeItem(fromBox.selectedData['Type']).childType.length > 0">

    第一个按钮,只是来启动input的。
    input是没显示出来的。可以设置过滤文件和个数。
    真正的上传工作,放到change的事件里处理就行。
    change事件的触发,是你选择完文件后的处理.

    相关文章

      网友评论

          本文标题:点击按钮上传文件

          本文链接:https://www.haomeiwen.com/subject/muwbwktx.html