From 09067af768a0157e82949222ccc4f42edce21bdf Mon Sep 17 00:00:00 2001 From: pan <1029559041@qq.com> Date: Sun, 11 Oct 2020 04:43:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=BB=B4=E6=8A=A4=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/index.js | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/routes/index.js b/routes/index.js index a8b0f84..4ccba99 100644 --- a/routes/index.js +++ b/routes/index.js @@ -91,11 +91,17 @@ router.post('/deploy', function(req, res, next) { //部署完毕事件 router.post('/finsh', function(req, res, next) { - if(req.params.name in startDeploy) { - let deployInfo=startDeploy[req.params.name] - dingding(`${req.params.name}|${deployInfo.description}自动部署成功,花费时间:${moment().diff(deployInfo.startTime, 'seconds', true)}秒`) + var parseMe = Object.keys(req.body)[0]; + var parsedParams = JSON.parse(parseMe); + if(parsedParams.name in startDeploy) { + let deployInfo=startDeploy[parsedParams] + dingding(`${parsedParams}|${deployInfo.description}自动部署成功,花费时间:${moment().diff(deployInfo.startTime, 'seconds', true)}秒`) + res.json({message:`仓库代码${parsedParams}部署成功`}) + }else { + error('参数异常,无法试别部署完毕事件') + res.error() } - res.json({message:`仓库代码${req.params.name}部署成功`}) + }); //部署期间显示部署页面