看vuex案例时,头次看到这么个写法,很是不解exportfunctioncreateMessage({text,thread},cb){consttimestamp=Date.now()constid='m_'+timestampconstmessage={id,text,timestamp,threadID:thread.id,threadName:thread.name,authorName:'Evan'}setTimeout(function(){cb(message)},LATENCY)}想请教下这边的cb用法及含义
2 回答
人到中年有点甜
TA贡献1895条经验 获得超7个赞
这个和vuex没什么关系,只是一个普通的方法,cb表示回调函数,它接收一个参数,这个参数就是createMessage中的message。比如在调用这个方法时,可以这样:createMessage({text:'文字内容',thread:{id:1,name:'333333'}},function(msg){console.log(msg.text)//output:文字内容})
添加回答
举报
0/150
提交
取消