怎么为formData对象 添加对象呢?
let fd = new FormData()
fd.append('file', fileObj)
fd.append('instruct', this.commitForm.instruct)
fd.append('deptId', this.commitForm.deptId)
fd.append('ids', this.commitForm.ids)
我现在想把后三项instruct/deptId/ids 放到clueCommit对象里
这个对象在fd里面 和file同级
求解