从PHP脚本启动uboost.py时出现此错误
无法使用创建流程 'C:\ Users \ Administrator \ AppData \ Local \ Programs \ Python \ Python37 python.exe“ C:\ uboost \ uboost.py” arg1 arg2; echo退出状态:$?'
我正在通过以下脚本运行它:
.then(result => {
console.log('createUser:', result)
passport.authenticate('local', (err, user, info) => {
if (err) {
handleResponse(res, 500, 'error');
console.log(info);
}
if (user) {
handleResponse(res, 200, 'success');
console.log(info);
}
})(req, res, next);
})
.catch(err=> {
console.log('err createUser:', err)
next();
});
希望有人知道原因 谢谢