首頁  >  問答  >  主體

javascript - 一個vuex的問題

如下,如何取得children然後更新到father.children中,頁面就可以清單展示了

state: {
    father: [
        {
            name: 'wang',
            children: []
        }
    ]
}


action: {
    getChildren(fatherId).then(children => {
        // 获得children,如何更新到father.children中
    });
}
三叔三叔2663 天前809

全部回覆(1)我來回復

  • 我想大声告诉你

    我想大声告诉你2017-07-05 11:10:08

    state: {
        father: [
            {
                name: 'wang',
                children: []
            }
        ]
    }, 
    mutations:{
    updateChildren(state,children){
        state.father[0].children = children;
    }
    },
    actions: {
        updateChildren({commit}){
            getChildren(fatherId).then(children => {
                // 获得children,如何更新到father.children中
                commit("updateChildren",children );
            });
        }
    }

    大概這樣吧,去看看文件吧

    回覆
    0
  • 取消回覆