JavaScript
React实现接收model网络数据 标签描述

下面是model层的代码做业务网络请求 identityVerification({ payload, },{ call, }){ letresult=false; try{ yieldcall(Service.identityVerification,payload); result=true; }catch(err){ returnresult; } returnresult; }, 公众号【码兄】 components下接收 dispatch({ type:'account/identityVerification', payload:values, }).then((resu...