function getNode(subjectId, nodeId){
request(`http://hr.amiaodaifu.com:50000/1610/questions/${subjectId}/get-children/${nodeId}`, (err, res, body) => {
console.log(body)
if(err){
return console.log("err: ",err)
} else {
const content = JSON.parse(body);
console.log(content)
return content.length == 0 ? Promise.resolve(content) : Promise.resolve({
id: nodeId,
children: JSON.parse(body)
})
}
})
}
function getTree(subjectId, nodeId){
getNode(subjectId, nodeId)
.then(items => {
return Promise.map(items.children, item => (getTree(item)))
})
// .then((children) => ({
// id: nodeId,
// children
// }))
}
调用getTree的时候,提示的错误是:
Cannot read property 'then' of undefined
是我的思路有问题吗?
まず、
request
の戻り値はPromise
ではありません。第二に、
getNode
メソッドはrequest
の結果を返しません。次のように変更できます:
リーリー正解は 2 階です。Promise は間違った場所で使用されています
return Promise.map(items.children, item => (getTree(item)))
Promise.map 関数はありますか?