从demo中看到以下代码`

 // 发送多媒体消息,如果想测试图片发送,可以打开注释

room.send({
text: '图片测试',
// 自定义的属性
attr: {
a:123
},
url: 'http://7xkdph.com1.z0.glb.clouddn.com/55ee8422c1524',
metaData: {
name:'logo',
format:'png',
height: 123,
width: 123,
size: 888
}
}, {
type: 'image'
}, function(data) {
console.log('图片数据发送成功!');
});
}
提示图片发送成功,并没有看到图片,只看到“测试图片”这四个字,
还有就是channel 在demo中对应的是哪个 是room.name吗?