Javascript等待设置对象属性

时间:2017-12-23 14:50:58

标签: javascript node.js asynchronous ecmascript-6 async-await

getStore().then((store) => {
  buildRates().then((rates) => {
    let newStore = store;
    newStore.rates = rates;
    setStore(newStore).then((res) => {
      // callback
      cb(null, res);
    })
  })
});

在async / await语法中编写此代码时遇到问题。当我试着写这样的等待......

let store = await getStore();
store.rates = await buildRates();
setStore(store).then((res) => {
  // callback
  cb(null, res);
});

... setStore使用从await getStore()返回的原始对象,store.rates上没有await buildRates()上的对象

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

解决。问题是buildRates()不是正确的承诺,哎呀!