空间H5游戏-客户端接口

mqq.Qzone.writeMood

>= Android 7.15 >= IOS 7.15

使用说明

呼起说说发表界面

参数说明

名称 类型 必选 描述
text String 说说文本
photoList Array<Object> 图片列表
singlePic String base64的图片(支持本地图片单图)
tagId String 事件ID
tagTitle String 事件标题
tagUrl String 事件图片链接
tagProtocol String 事件protocol,透穿给后台的

参数 photoList<Object>

名称 类型 必选 描述
url String 图片url地址
width Number 图片宽度
height Number 图片高度

Example

window.mqq.invoke('Qzone','writeMood',{
    text: '这是默认文字',
    photoList: [
        {
            url : 'http://p.qpic.cn/relation/2262359184/2262359184_1475072537827692_19518/0',
            width: 640,
            height: 340
        },
        {
            url : 'http://p.qpic.cn/relation/2262359184/2262359184_1475072728850158_27169/0',
            width: 300,
            height: 450
        }
    ]
});