//启动 static start() { if(DataUpload.isStart){ return; } DataUpload.isStart = true; const server = new HttpServer(); server.multipart(); server.post('/aio/upload', async (req, res, next) => { console.log(`http:// 访问接口`) } }