怎么为formData对象 添加对象?

怎么为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同级
求解


let clueCommit={
    "instruct": this.commitForm.instruct,
    "deptId": this.commitForm.deptId,
    "ids":  this.commitForm.ids
}
let fd = new FormData()
fd.append('file', fileObj)
fd.append('clueCommit', clueCommit)