Nest接收AVue上传图片文件

前端用的是avue组件库(对elementUI进行的二次封装),后端是NestJS

1.添加表单组件

  • option.column添加对应的上传配置
  • type: 'upload',//上传
  • listType: 'picture-img',//上传图片
  • row: true,//占一行
  • width: 120,//图片宽度
  • action: '/upload',//上传地址
  • Nest接收AVue上传图片文件_第1张图片
  • Nest接收AVue上传图片文件_第2张图片

配置axios

//main.ts
const http = axios.create({
  baseURL: "http://localhost:3000"
});
Vue.prototype.$http = http;//vue的axios
Vue.prototype.$httpajax = http;//avue的axios

已经能上传了,但是是404
Nest接收AVue上传图片文件_第3张图片

NestJS配置upload路径

//app.controller.ts
  @Post('/upload')
  @UseInterceptors(FileInterceptor('file')) //使用上传拦截器,取到前端上传的文件名
  async upload(@UploadedFile('file') file) {
    return {
      url: `http://localhost:3000/uploads/${file.filename}`,
    };
  }

保存上传文件

//app.module.ts的@Module中导入模块
    MulterModule.register({
      dest: 'uploads',
    })

配置完会生成uploads文件
Nest接收AVue上传图片文件_第4张图片
Nest接收AVue上传图片文件_第5张图片

Nest配置静态文件托管

//main.ts
  const app = await NestFactory.create<NestExpressApplication>(AppModule); //app基于NestExpressApplication的应用
  app.useStaticAssets('uploads', {
    prefix: '/uploads',
  }); //配置静态文件

完成

Nest接收AVue上传图片文件_第6张图片

你可能感兴趣的:(avue,nest,vue,typescript)