Angular upload

前端之家收集整理的这篇文章主要介绍了Angular upload前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参考
1.下载

npm install ng2-file-upload --save

2.引入

在upload.module.ts里
import { FileUploadModule } from 'ng2-file-upload';

@NgModule里也导入

3.使用

can’t bind to ‘ngForOf’ since it isn’t a known property of ‘mat-radio-button’
=》要导入CommonModule,FormsMudule,BrowserModule

<mat-radio-group>
    <mat-radio-button *ngFor="let item of items" [value]="item">

    </mat-radio-button>
<mat-radio-group>
如果value写了[value] = "items" 单选按钮会不灵的
原文链接:https://www.f2er.com/angularjs/144956.html

猜你在找的Angularjs相关文章