Home  >  Q&A  >  body text

javascript - A vuex problem

As follows, how to get children and then update them to father.children, so that the page can be displayed in a list

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


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

reply all(1)I'll reply

  • 我想大声告诉你

    我想大声告诉你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 );
            });
        }
    }

    That’s about it, let’s take a look at the documentation

    reply
    0
  • Cancelreply