为什么我设置了ngf-multiple为true,虽然能选择多张图片了,但绑定的数据还是只有一张?

<input
                                id="file-Portrait" name="file" type="file"
                                class="form-control file-show" ng-disabled="!p_checkUserPwd" ngf-select ngf-keep="true"
                                ngf-multiple="true" ng-model="file" required multiple
                                data-allowed-file-extensions="['png','gif','jpg','jpeg']"
                                ngf-max-size="5MB"
                                ngf-accept="'image/*'" ngf-change="f_onFileSelect($file)" />

这样虽然能选择多张图片了,但controller绑定的数据还是只有一张图片的信息,这是为什么呢?

https://blog.csdn.net/qq_36250202/article/details/78815644

ng-model="files"