第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

完成()函數(shù)的含義

完成()函數(shù)的含義

假設(shè)您有以下操作export const startAddExpense = (expenseData = {}) => {  return (dispatch) => {    const {      description = '',      note = '',      amount = 0,      createdAt = 0    } = expenseData;    const expense = { description, note, amount, createdAt };    return database.ref('expenses').push(expense).then((ref) => {      dispatch(addExpense({        id: ref.key,        ...expense      }));    });  };};我將費(fèi)用數(shù)據(jù)存儲到數(shù)據(jù)庫(在我的情況下是火庫),然后將addExpense函數(shù)發(fā)送到商店這是對它的測試。test('should add expense to database and store', (done) => {    const store = createMockStore({});    const expenseData = {      description: 'Mouse',      amount: 3000,      note: 'This one is better',      createdAt: 1000    };    store.dispatch(startAddExpense(expenseData)).then(() => {      expect(1).toBe(1);      done();    });});done() 函數(shù)的含義是什么?這是否意味著回調(diào)函數(shù)應(yīng)該等到在 firebase 數(shù)據(jù)庫中插入數(shù)據(jù)完成?謝謝 西奧
查看完整描述

1 回答

?
瀟湘沐

TA貢獻(xiàn)1816條經(jīng)驗(yàn) 獲得超6個贊

done表示測試函數(shù)具有異步代碼。因此,您應(yīng)該在獲得異步結(jié)果時手動調(diào)用。此外,異步測試具有第三個參數(shù),這些參數(shù)在該函數(shù)被視為失敗后定義超時。https://jasmine.github.io/tutorials/async#callbacksdone



查看完整回答
反對 回復(fù) 2022-09-16
  • 1 回答
  • 0 關(guān)注
  • 117 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號