bufanyun/hotgo

富文本无法上传图片

Closed this issue · 2 comments

版本: 2.15.1

描述: 上传富文本报文件无法找到,如下图所示

image
经过排查,发现富文本调用上传接口时,content-type 为 application/json导致,如下图所示
image
image

我在修改富文本上传接口后上传正常

// 代码位置web/src/api/base/index.ts
export function UploadImage(params) {
  const useUserStore = useUserStoreWidthOut();
  const headers = {
    Authorization: useUserStore.token,
    uploadType: 'default',
    'Content-Type': 'multipart/form-data', // 指定 content-type
  };
  return http.request({
    url: '/upload/file',
    method: 'post',
    params,
    headers,
  });
}

image
image

好的,可以pr下

好的,我 pr 一下