摘要: ``` const webSocketHelper = cc.Class({ extends: cc.Component, createWs(){ this.ws = new WebSocket("ws://127.0.0.1:8888"); this.ws.onopen = function (event) { console.log("已连接."); }.bind(this); this.ws 阅读全文
posted @ 2020-04-14 10:00 剑小破 阅读(857) 评论(1) 推荐(0) 编辑