getStore().then((store) => {
buildRates().then((rates) => {
let newStore = store;
newStore.rates = rates;
setStore(newStore).then((res) => {
// callback
cb(null, res);
})
})
});
async/await 구문에이 문제가 발생했습니다. 나는 await buildRates()
자바 스크립트를 설정할 객체 속성을 기다리는 중
어떤 아이디어가에서 store.rates
에서 객체없이
let store = await getStore();
store.rates = await buildRates();
setStore(store).then((res) => {
// callback
cb(null, res);
});
...
setStore
원래 목적은
await getStore()
에서 반환 된 사용합니다 ...이 같은 기다리고로 쓸 때?
재생산 할 수 없음 : https://jsfiddle.net/kb51h92y/ – JJJ
'buildRates'가 더 이상 약속을 반환하지 않거나 약속이 예상치 못한 값으로 해결되었다고 가정합니다. – Sumurai8