From b84887577aa37265e7d2da611cd9480b2b270e41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B2=81=E8=AA=89=E7=A8=8B?= <2659568239@qq.com> Date: Thu, 22 Feb 2024 17:48:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B015?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nodeService.js | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/nodeService.js b/nodeService.js index 462c07a..72324b4 100644 --- a/nodeService.js +++ b/nodeService.js @@ -47,17 +47,16 @@ app.post('/createShortcut', (req, res) => { Exec=/usr/bin/chromium-browser ${shortcutURL} Icon=/usr/share/icons/hicolor/48x48/apps/chromium-browser.png`; - fs.writeFileSync(shortcutFolderPath, shortcutFileContent, (err) => { - if (err) { - console.error(err); - res.status(500).send('安装失败!'); - } else { - res.status(200).send('安装成功!'); - } - }); + try { + fs.writeFileSync(shortcutFolderPath, shortcutFileContent); + // 设置文件权限为可执行 0o755 表示 rwxr-xr-x 权限,即所有者可读写执行,其他用户可读执行 + fs.chmodSync(shortcutFolderPath, 0o755); + res.status(200).send('安装成功!'); + } catch (err) { + console.error(err); + res.status(500).send('安装失败!'); + } - // 设置文件权限为可执行 - fs.chmodSync(shortcutFolderPath, 0o755); // 0o755 表示 rwxr-xr-x 权限,即所有者可读写执行,其他用户可读执行 }); // 运行项目 需要进入到当前的文件夹目录打开终端 执行 node nodeService.js