- 如果开发了一个小程序,某些用户上传了自己的视频,我这个小程序平台需要视频资质吗?
如果我有一个小程序,很多用户在上面发布自己的视频,请问我这个平台需要什么资质能通过审核呢
2022-03-10 - 开发者工具控制台报这个问题怎么解决?
WebSocket connection to 'ws://127.0.0.1:8080/sub/websocket' failed: Error during WebSocket handshake: Sent non-empty 'Sec-WebSocket-Protocol' header but no response was received js代码: /** * 生命周期函数--监听页面显示 */ onShow: function () { var that = this wx.connectSocket({ url: 'ws://172.0.0.1:8080/sub/websocket', header:{ 'content-type': 'application/json' }, protocols: ['protocol1'] }) wx.onSocketOpen(function (res){ wx.sendSocketMessage({ data: "hello world", success(){ wx.onSocketMessage(function(re){ that.setData({ response: re.data}) console.log("SocketMessage: "+re.data) }) }, }) }) },
2021-05-07 - 云开发可以使用第三方UI库吗?
云开发如何使用第三方UI库,与普通开发用法一样吗
2021-01-27