cordova plugin add org.apache.cordova.vibration

cordova plugin add https://github.com/katzer/cordova-plugin-local-notifications

cordova plugin add cordova-plugin-websocket-server

 

手机端代码:

var wsserver = cordova.plugins.wsserver;
wsserver.start(1818, {
    // WebSocket Server
    'onStart' : function(addr, port) {
         $.post(“test.ashx”,{Addr:addr,Port:port},function(json){ alert("注册到服务器端成功!"); },“josn”);
    },
    'onMessage' : function(conn, msg) {
            cordova.plugins.notification.local.schedule({
                id: 1,
                title: "来自服器(WebSocket 客户端的消息)",
                text:msg,               
                //firstAt: monday_9_am,
                every: "week",
                //icon: "",
                data: { meetingId:"123" }
            });
            navigator.notification.vibrate(1000);
            cordova.plugins.notification.local.on("click", function (notification) {
                alert(notification.data+",messageId:"+notification.data.meetingId);
            });   
    },
    'onClose' : function(conn, code, reason) {
        console.log('A user disconnected from %s', conn.remoteAddr);
    },
    'origins' : [ 'file://' ]
});


后台代码处理:

var port = this.Request.Params["Port"];
var addr = this.Request.Params["Addr"];
var webSocketClient = new WebSocket(string.Format("ws://{0}:{1}",addr ,port ));
webSocketClient.open();
string message = "万恶的苹果你等着!";
webSocketClient.Send(message);

webSocketClient.close();


效果图:

我对小编确实无语了,解释得多,代码注释多,就是乱写一通

想要看详细解释

请看QQ日志:

http://user.qzone.qq.com/273237710/blog/1464765609

 

转载于:https://www.cnblogs.com/tigerleq/p/5550141.html

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐