mui.plusReady(function() {
var now = new Date();
plus.push.createMessage('hello world',{},{
title : '您收到一条消息:',
when : now
})
}
通过官方文档得知 when 应该是个Date类型,但是用这种方法创建消息并没有显示时间
mui.plusReady(function() {
var now = new Date();
plus.push.createMessage('hello world',{},{
title : '您收到一条消息:',
when : now
})
}
通过官方文档得知 when 应该是个Date类型,但是用这种方法创建消息并没有显示时间
0 个回复