showLoading会在打开websocket之后自动关闭
- 当前 Bug 的表现(可附上截图) showLoading会在连接websocket时自动关闭。loading代码在前或在后结果都一样,自动关闭 - 预期表现 - 复现路径 - 提供一个最简复现 Demo wx.showLoading({ title: 'loading', mask: true }) var socketTask = wx.connectSocket({ url: 'ws://' }) socketTask.onMessage(this.onSocketMessage); socketTask.onClose(this.onSocketClose); socketTask.onError(this.onSocketError); wx.showLoading({ title: 'loading', mask: true })