Mudu.Room.NOTICE 公告组件
获取当前公告信息
Mudu.Room.Notice.Get(function(res) {
if (res.errcode === 1000) {
console.log('获取公告成功,当前公告信息:', res.data)
} else {
console.log('获取公告请求失败')
}
})
res.data 公告数据结构说明
名称 | 说明 | 类型 |
---|---|---|
content | 公告内容 | string |
state | 公告使用状态:1-公告开启,2-当前无公告 | number |
公告变化事件 Notice.Change
Mudu.MsgBus.On(
// 事件名,值为Notice.Change
'Notice.Change',
// 事件处理方法,参数为新的公告信息
function (data) {
console.log(`公告${data.state === 1 ? '开启' : '关闭'}, 新的公告内容为:${data.content}`)
}
)