ngx-resource-core 和文件附件
ngx-resource-core and file attachments
我在 Angular 中使用最新版本的 ngx-resource-core 7. 考虑到模型可以包含 files/byte 数组,有什么方法可以发送多部分表单吗?
从 5.3.2 版本开始,您只需在 @ResourceAction
中指定 requestBodyType: ResourceRequestBodyType.FORM_DATA
,实体的所有 File
或 File[]
成员将作为多部分数据。
我在 Angular 中使用最新版本的 ngx-resource-core 7. 考虑到模型可以包含 files/byte 数组,有什么方法可以发送多部分表单吗?
从 5.3.2 版本开始,您只需在 @ResourceAction
中指定 requestBodyType: ResourceRequestBodyType.FORM_DATA
,实体的所有 File
或 File[]
成员将作为多部分数据。