请问腾讯IM怎么一次发送多条消息?
let message = tim.createImageMessage({
to: 'user1',
conversationType: TIM.TYPES.CONV_C2C,
payload: { file: res },
onProgress: function(event) { console.log('file uploading:', event) }
});
需要在发送图片消息的时候同时发送一条接收方和发送方的头像以及一些其它信息的消息,webIm有addCustom()可以追加消息,但是tim的payload只能包含一条消息。