Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Angular Docs 似乎缺乏适当的文档。Angular2 最终版本还比较年轻,所以互联网上没有太多帮助。
如果有人可以指导我使用Angular 2.1中的 FormBuilder 组件处理文件上传,我将不胜感激
快速完成工作(根据您的需要进行修改):
// Inside component fileUploaded(event: any) { const file = event.srcElement.files[0]; this.form.get('file').patchValue(file); } // Inside template <input type="file" (change)="fileUploaded($event)">