- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在 Windows 10 中,我有一个快速服务器,它在 route 启动命令
const exec = util.promisify(require('child_process').exec);
module.exports = router.use(function(req, res) {
exec('start "Title" "C:\\Program Files (x86)\\Plex\\Plex Media Server\\Plex Media Server.exe')
.then((r) => {
res.send("Ok.");
})
.catch((e) => {
res.status(401).send("Running error.", error);
});
}
当客户端向此路由发出请求时,Plex 服务器会启动,但服务器永远不会呈现“Ok.”。但是,如果我手动关闭 Plex Server,则程序流程将到达 res.send("Ok.");
在 Plex 服务器关闭之前,我无法在不停止服务器响应的情况下启动此命令。
绝望的编辑
我缺少一些东西。如果我运行 Node 并在 Node 命令行中写入:
console.log(require('child_process').exec('start "xx" "C:\\Program Files (x86)\\Plex\\Plex Media Server\\Plex Media Server.exe"')); console.log("ok");
它打开 Plex Serven,打印“ok”并且 Node 控制台等待另一个命令
但是,如果我像这样创建 mynode.js
console.log(require('child_process').exec('start "pp" "C:\\Program Files (x86)\\Plex\\Plex Media Server\\Plex Media Server.exe"')); console.log('ok');
从 Windows CMD:
c:\tmp> node mynode.js
它打开 Plex Server,打印“ok”,但在我不关闭 Plex Server 之前,它不会继续。
最佳答案
经过大量烦人的尝试和错误后,我找到了解决此问题的方法。
exec('start "Title" "C:\\Program Files (x86)\\Plex\\Plex Media Server\\Plex Media Server.exe', { timeout : 1000 })
一秒钟后,exec 将控制权返回给主程序。
关于node.js - require ('child_process' ).exec 停止程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55504195/
.bat文件为:。在命令提示符下运行cmd/c a.bat将打开记事本窗口。并且在关闭窗口之前打印Foobar。我可以在不关闭记事本的情况下运行下一个命令。。但是,在node.js child_pro
有一段时间以来,我一直在尝试达成一些目前对我来说还行不通的事情。 对于 nodejs,我喜欢运行交互式 sh-command 并在命令退出后使用 sh-command 输出。我喜欢编写一个可生成的生成
我正在使用 Node.js 下的 Bluebird Promise 库,非常棒!但我有一个问题: 如果您查看 Node 的文档 child_process.exec和 child_process.ex
此代码适用于 Windows 和 Mac OS X: var exec = require( 'child_process' ).exec exec( 'git clone git@github.co
我在MacOS和Linux中使用node.js v0.10.12时遇到了这个错误,这段代码在 Windows 7 中工作正常。唯一的区别是在 Windows 7 上我有管理员 ID,在 MacOSX
我在 Electron 项目中使用 npm 库“child_process”来捕获带有 spawn 的 C 程序的标准输出流。但是,当我尝试记录 child.stdout.on('data') 捕获的
在 atom-text-editor 插件开发中,我运行一个 child_process,如 cp = require 'child_process' command = "python /home/
我正在尝试在我的 Node 脚本中创建一个虚拟 bash,它从另一个用户上下文中执行命令。 var spawn = require('child_process').spawn; var termin
我有一个在 electron 中运行的 angular2 webpack 项目。我正在尝试使用 shelljs 但 webpack 无法构建并出现错误: [0] ERROR in ./~/shellj
React Native v0.23.0 Node v5.11.0 Windows 10 10586(我在 OSX 上尝试并得到相同的错误) 我尝试在React Native中编写var cp = r
try { var output = child_process.execSync(cmd); } catch (ex) { return 0 } return output.toSt
我正在尝试使用 node.js 执行一堆 bash 命令。我使用 child_process.exec 来执行命令。 var child_process = require('child_proces
这个问题在这里已经有了答案: How to print both to stdout and file in C (4 个答案) Writing to both stdout & a file (7
我正在使用 child_process 运行最终调用的脚本 ssh -t server "sudo command" 我回来了: Pseudo-terminal will not be allocat
我正在尝试在 Node 中执行一个子进程,其名称来自发布请求。我使用的是express,因此是app.post()。我的代码如下。 app.post('/*', function(req, res)
我需要验证 child_process 是否已成功终止,因为如果该进程仍然存在,我将无法执行下一步操作。 var proc = require('child_process'); var prog =
我正在尝试使用目标设备启动 cordova 命令。我已经测试了该命令并且它有效,但是当我尝试用我的代码生成它时,它忽略等号,因此不会运行。此代码确实可以工作,只是不添加 "--target='iPho
我正在使用 exec() 运行终端命令以在 electron mac 应用程序中显示对话框。 我使用的代码: var exec = require('child_process').exec; var
如何在 node.js 上生成此命令 (/usr/bin/which flac): var spawn = require('child_process').spawn; var cmd = spaw
我正在尝试 execute a child在不同的目录中处理,然后是其父目录。 var exec = require('child_process').exec; exec( 'pwd',
我是一名优秀的程序员,十分优秀!