问:
下面是我的代码
export function fetchDeleteList<T>(agentSessionId: string) {return post<T>({url: 'http://192.168.0.116:8089/pipe-ics/agent/delete',method: 'post',data: { agentSessionId },})
}
目前是json格式的post请求, 目前不行, 要换成form表单形式的post请求怎么改?
回答:
修改的内容:
headers: {'Content-Type': 'application/x-www-form-urlencoded', // 设置请求头},data: formData.toString(), // 将表单数据转换为字符串