# Upload files
Ts.ED supports now the uploading files by default. We use Multer (opens new window) module
to handle multipart/form-data
from request.
TIP
Originally, multer is provided by Express.js, but Ts.ED implements a multer wrapper to support Koa.js platform based on the official @koa/multer (opens new window) module.
# Configuration
By default, the directory used is ${projetRoot}/uploads
. You can configure another directory on your Server settings.
# Options
dest
(string
): The destination directory for the uploaded files.storage
(StoreEngine
): The storage engine to use for uploaded files.limits
(Object
): An object specifying the size limits of the following optional properties. This object is passed to busboy directly, and the details of properties can be found on https://github.com/mscdex/busboy (opens new window).fieldNameSize
(number
): Max field name size (Default: 100 bytes).fieldSize
(number
): Max field value size (Default: 1MB).fields
(number
): Max number of non- file fields (Default: Infinity).fileSize
(number
): For multipart forms, the max file size (in bytes)(Default: Infinity).files
(number
): For multipart forms, the max number of file fields (Default: Infinity).parts
(number
): For multipart forms, the max number of parts (fields + files)(Default: Infinity).headerPairs
(number
): For multipart forms, the max number of headerkey => value
pairs to parse Default: 2000(same as node's http).
preservePath
(boolean
): Keep the full path of files instead of just the base name (Default: false).fileFilter
(Function
): Optional function to control which files are uploaded. This is called for every file that is processed.
# Usage
# Single file
A single file can be injected to your endpoint by using the MultipartFile decorator like this:
import {MulterOptions, MultipartFile, PlatformMulterFile} from "@tsed/common";
import {Post} from "@tsed/schema";
import {Controller} from "@tsed/di";
@Controller("/")
class MyCtrl {
@Post("/file")
private uploadFile1(@MultipartFile("file") file: PlatformMulterFile) {}
@Post("/file")
@MulterOptions({dest: "/other-dir"})
private uploadFile2(@MultipartFile("file") file: PlatformMulterFile) {}
}
2
3
4
5
6
7
8
9
10
11
12
13
TIP
Many frontend code examples are available on the web and some of them don't work as expected. So, to help you, here is a short vanilla Javascript code example:
export async function loadFile(file) {
const formData = new FormData();
formData.append("file", file);
await fetch(`/rest/upload`, {
method: "POST",
headers: {
// don't set Content-Type: multipart/form-data. It's set automatically by fetch (same things with axios)
},
body: formData
});
}
2
3
4
5
6
7
8
9
10
11
12
# Multiple files
For multiple files, just use PlatformMulterFile[]
annotation type. Ts.ED will understand that you want to inject a list of files even if your consumer only sends you one:
import {MultipartFile, PlatformMulterFile} from "@tsed/common";
import {Post} from "@tsed/schema";
import {Controller} from "@tsed/di";
@Controller("/")
class MyCtrl {
@Post("/files")
private uploadFile(@MultipartFile("files", 4) files: PlatformMulterFile[]) {
// multiple files with 4 as limits
}
}
2
3
4
5
6
7
8
9
10
11
WARNING
Swagger spec (v2.0) doesn't support multiple files. Enable OAS 3 to support multipart files in swagger-ui.
# Use with Middleware
The
PlatformMulterMiddleware
will convert FormData key/value pairs into
BodyParams
. If you need access to
BodyParams
in a custom Middleware, make sure to set the priority
on the Middleware to something greater than 10 so it is executed after the
PlatformMulterMiddleware
.
import { BodyParams, Middleware, MiddlewareMethods } from '@tsed/common';
@Middleware({ priority: 11 })
export class CustomMiddleware implements MiddlewareMethods {
public use(@BodyParams('data') data: any) {
// data will now be available
}
}
2
3
4
5
6
7
Last Updated: 10/24/2024, 6:33:40 AM
Other topics
- Session & cookies
- Passport.js
- Keycloak
- Prisma
- TypeORM
- MikroORM
- Mongoose
- GraphQL
- GraphQL WS
- Apollo
- TypeGraphQL
- GraphQL Nexus
- Socket.io
- Swagger
- AJV
- Multer
- Serve static files
- Templating
- Serverless HTTP
- Seq
- OIDC
- Stripe
- Agenda
- Terminus
- Serverless
- Server-sent events
- IORedis
- Vike
- Jest
- Vitest
- Controllers
- Providers
- Model
- JsonMapper
- Middlewares
- Pipes
- Interceptors
- Authentication
- Hooks
- Exceptions
- Throw HTTP Exceptions
- Cache
- Command
- Response Filter
- Injection scopes
- Custom providers
- Lazy-loading provider
- Custom endpoint decorator
- Testing
- Customize 404