xiamenfreedom
xiamenfreedom
  • 发布:2017-08-25 15:38
  • 更新:2017-08-28 12:02
  • 阅读:1473

dcloud=个推 自定义声音

分类:MUI

正常的推送是可以收到,如何自定义声音呢?这个代码有啥不对吗
<script type="text/javascript" charset="utf-8">
mui.init();
mui.plusReady(function() {

    plus.push.setAutoNotification( false );  

    plus.push.addEventListener("click", function(msg) {  
        if(msg.payload) { alert("payload_Click");     }  
                alert("click"+msg.content);  
    }, false);  

    plus.push.addEventListener("receive", function(msg) {  
        var content = msg.content;  
        plus.push.createMessage( "abcdefg"+msg.content, msg.payload||'',msg );  
        }, false);  
    });  

</script>
2017-08-25 15:38 负责人:无 分享
已邀请:
8***@qq.com

8***@qq.com

android:Hbuilder内置科大讯飞第三方播放语音,你可以查查。如果播放的是个固定的语音,可以p = plus.audio.createPlayer("/image/2620.mp3");类似这种播放
ios:查APNS,个推文档里有专门介绍自定义的文档

该问题目前已经被锁定, 无法添加新回复