今天遇到一个有点怀疑人生的问题:
如图
后台给的swigger是这样的,在formData里传递一个 dto,还要求是json的格式;
但是我在swigger里并调不通,显示404,
但是postman中显示的是对的
请求后台改接口无果后,上网各种查,首先
formData
进行formData添加时,只能append参数名及值的,无法添加类型。且他会根据file,blob及string自动设置值的类型,经过查找blob;
blob
发现 其实blob是可以进行类型设定的,形如:
new Blob([JSON.stringify(this.rowItem)], { type: 'application/json' }
最后这么给后台传过去了。
formData.append('file', this.rowItem.file);
formData.append('couponRequestDto', new Blob([JSON.stringify(this.rowItem)], { type: 'application/json' }));
await this.handleMountDialog(addFun, true, formData);
搞定!