-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathexample.ts
49 lines (42 loc) · 1.09 KB
/
example.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import fastifyServer from "fastify"
import data from ".";
const fastify = fastifyServer();
fastify.register(data, {
limits: { fileSize: 50 * 1024 * 1024 }
})
fastify.post('/upload', function (req, reply) {
// @ts-ignore
const files = Array(req.raw.files)
// for fix error run yarn add @types/node or npm install @types/node
console.log(files)
const fileArr = []
for (const key in files) {
fileArr.push({
name: files[key].name,
mimetype: files[key].mimetype
})
}
reply.send(fileArr)
});
fastify.post<{Body: {file?: any}}>('/uploadSchema', {
schema: {
body: {
type: 'object',
properties: {
file: { type: 'object' }
},
required: ['file']
}
},
handler: (request, reply) => {
const file = request.body.file
// for fix error run yarn add @types/node or npm install @types/node
console.log(file)
reply.send({ file })
}
})
fastify.listen(8080, '127.0.0.1', (err, address) => {
if (err) throw err
// for fix error run yarn add @types/node or npm install @types/node
console.log(`server listening on ${address}`)
})