// 延伸问题
export function getChat(data) {
return request({
url: /aisearch/chat
,
method: 'post',
header: {
'Content-Type': 'multipart/form-data',
},
data: data,
});
}
const formData = new FormData();
formData.append('question', text);
接口调用 getChat(formData)