作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个使用 child_process.spawn
的小模块克隆一个 git repo 并返回一个 Promise 但它对我来说失败了。当我使用 spawnSync 时,它可以工作。
这是有效的同步代码。
import {spawnSync} from 'child_process';
export default async function clone(options: { url: string; path: string; }) {
const url = options.url;
const target = options.path;
const args = ['clone', url, target];
return spawnSync('git', args);
}
undefined
import {spawn} from 'child_process';
export default async function clone(options: { url: string; path: string; }) {
const url = options.url;
const target = options.path;
const args = ['clone', url, target];
const process = spawn('git', args);
process.on('close', function () {
return new Promise(function (resolve, reject) {
process.addListener('error', reject);
process.addListener('exit', resolve);
});
});
}
process.on('close', function (code) {
return code;
});
process.on('close', function (code) {
return Promise.resolve(code);
});
…on('exit', function(code){
return code
})
最佳答案
你已经接近了,你只需要从你的clone
返回 promise 函数(不需要是 async
,因为您需要显式创建 promise )。此外,您在错误的时间 Hook 错误事件(据我所知,通过错误的方法):
import {spawn} from 'child_process';
// *** Not async
export default function clone(options: { url: string; path: string; }) {
// *** Return the promise
return new Promise(function (resolve, reject) {
const url = options.url;
const target = options.path;
const args = ['clone', url, target];
const process = spawn('git', args);
process.on('close', function (code) { // Should probably be 'exit', not 'close'
// *** Process completed
resolve(code);
});
process.on('error', function (err) {
// *** Process creation failed
reject(err);
});
});
}
关于typescript - 如何让 child_process.spawn 在我的 TypeScript 模块中返回一个 Promise?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53204192/
我是一名优秀的程序员,十分优秀!