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
是我的思路有问题吗?
大家讲道理2017-04-17 15:29:47
まず、request
の戻り値はPromise
ではありません。
第二に、getNode
メソッドは request
の結果を返しません。
次のように変更できます:
リーリー怪我咯2017-04-17 15:29:47
return Promise.map(items.children, item => (getTree(item)))
Promise.map 関数はありますか?