我不能解決我做錯了我的Angular 2代碼。我的承諾不會返回正確的結果。承諾解決不工作
我的代碼如下所示:
this.addPlan('My plan title9', "YES9")
.then((id)=>{
console.log('Promise return was: ' + id);
})
.catch((err)=>{
console.log('Call to addPlan failed with err = ' + err);
});
addPlan(title, security)
{
let timeStamp \t = new Date().toISOString();
let plan \t \t = {
_id \t \t : 'PLAN:' + timeStamp,
title \t \t : title,
security \t : security,
notes : [],
flags : [],
created : timeStamp,
updated \t : timeStamp
};
return new Promise(resolve =>
{
var theID;
this._DB.put(plan)
.then(function (response) {
console.log(JSON.stringify(response));
resolve(response.id);
theID = response.id;
})
.catch((err) =>
{
console.log('addPlan error is: ' + err);
this.success = false;
});
if(this.success)
{
this.handleSyncing();
resolve(theID);
}
});
}
當this.addPlan(...)
被稱爲服務器日誌:
Promise return was: undefined
{"ok":true,"id":"PLAN:2017-01-09T18:16:50.094Z","rev":"1-ac45a4785982fcbbcb46dd099431ecb6"}
從承諾回報是不確定的,當它應該是'id'的值。此外,控制檯首先顯示Promise消息,但我希望它在承諾返回後出現。
顯然,我在這裏做一個新手的錯誤,但我看不出它是什麼。