个人案例
大树online
撸码使用的
个人小程序扫码体验
文档说marker要取消了.你可以使用推荐那个新组件试试
map组件的iconpath不显示?在markers中添加了iconPath路径,从APPDATA界面中看出赋值成功,但是页面渲染失败,iconpath路径正确无误 [图片][图片] 页面上没有图标,预期效果应该是又绿点的 [图片] [图片]
2020-03-26不好意思哦.没有看那么深哦
nginx recv() failed?小程序的聊天室功能,后端是django+redis+nginx搭建的,但是在设置好后访问一直报错,查看nginx的日志是这样的: recv() failed (104: Connection reset by peer) while reading response header from upstream, no live upstreams while connecting to upstream, 小程序报错如下: [图片] nginx设置如下: upstream websocket { server 服务器ip:8000; } server { listen 443 ssl; server_name 域名; ssl_certificate *****; ssl_certificate_key *****; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件。 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #使用该协议进行配置。 ssl_prefer_server_ciphers on; location / { proxy_pass http://localhost:8000; proxy_http_version 1.1; proxy_read_timeout 14400; } location /wss { proxy_pass http://localhost:8000;#代理到上面的地址去, proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } 绑定的域名如下 request合法域名 https://www.***.top:8000 socket合法域名 wss://www.***.top 前端请求如下 webSocket: function () { // 创建Socket SocketTask = wx.connectSocket({ url: 'wss://www.***.top' + app_data.chat_url + 'room/wss', data: 'data', header: { 'content-type': 'application/json' }, method: 'POST', success: function (res) { console.log('WebSocket连接创建', res) }, fail: function (err) { wx.showToast({ title: '网络异常!', }) console.log(err) }, }) } 是因为nginx的转发做错了吗 我看到有人说是和redis有关但是 redis重启后还是没有用
2020-03-26确认你的业务逻辑没有问题吗?
IOS小程序购买页面点击立即购买不能跳转购买页面反而弹出输入框?是这种情况,苹果部分机型的手机在点击购买的时候并没有跳转到购买页面,反而是在买家留言的输入框自动聚焦要求买家输入留言。现在检查的时候发现这种情况会发生在6、8以及xs上,其他的机型支付功能却是正常的。没有出现点击之后弹出输入框的情况,请问这是什么问题?
2020-03-23这个还没有接触过.改天试试
echarts配置项使用visualMap导致小程序闪退,无任何提示?无关手机型号,均会闪退,基础库和开发者工具都是最新的,echarts版本是4.7.0 这是没有使用visualMap [图片] 这是使用了visualMap [图片] 这次的问题没有任何报错,使用了visualMap之后 只要切换到这个page 小程序就直接闪退。 小程序使用期间内存一直在520左右浮动。 日志已上传: 微信号:gyf19970422 时间:3.23 15:50 注:这个模块是我在上周功能全部实现调式完成之后就没管了,BUG是这周提交的时候出现的经过调式锁定在visualMap上
2020-03-23你说的是啥意思啊?真机调试还是 预览啊?这二个都是直接扫码就可以在手机端看的啊
如何将小程序推送到青蛙pro设备上?如题,我要将调试版推送到设备上
2020-03-18Failed to load local image resource /pages/adminMaint/cooper/ the server responded with a status of 500 (HTTP/1.1 500 Internal Server Error) 我也碰到这个问题了,不过是上传的时候,上传的信息都是有的,数据库里也是正常的.就是提示这个东西.求破
小程序加载网络图片,提示渲染层网络层错误image标签加载网络图片提示渲染层网络层错误,有时能加载出来,有时就加载失败,加载失败的时候提示渲染层网络层错误 图片地址:https://chelian.gpskk.com/photo/PreviewImage.ashx?imgUrl=Upload/CarImage/40/4066/d268f524-b10a-464f-9ba3-7dfe3e782fdc20190305165550.jpg
2020-03-18管理看过来啊....
云函数接收消息推送不能发送推送问题?在云后台的全局设置中添加了一个云函数作为消息推送函数,事件类型是user_enter_tempsession,配置如下图: [图片] 但是 在进入客服消息的时候触发云函数,但是后台日志显示调用出错,错误如下: 日志内容 Request ID: ab03a697-fc80-11e9-88ad-525400697544 执行时间: 223.5ms内存使用: 22.77 MB 返回结果 {"errorCode":1,"errorMessage":"user code exception caught","stackTrace":"errCode: 45015 | errMsg: openapi.customerServiceMessage.send:fail response out of time limit or subscription is canceled hint: [MObbNA05168672]"} 日志 START RequestId: ab03a697-fc80-11e9-88ad-525400697544 Event RequestId: ab03a697-fc80-11e9-88ad-525400697544 Error: errCode: 45015 | errMsg: openapi.customerServiceMessage.send:fail response out of time limit or subscription is canceled hint: [MObbNA05168672] at new CloudSDKError (/var/user/node_modules/wx-server-sdk/index.js:6366:28) at /var/user/node_modules/wx-server-sdk/index.js:2529:43 at step (/var/user/node_modules/tslib/tslib.js:136:27) at Object.next (/var/user/node_modules/tslib/tslib.js:117:57) at fulfilled (/var/user/node_modules/tslib/tslib.js:107:62) at <anonymous> at process._tickCallback (internal/process/next_tick.js:188:7) END RequestId: ab03a697-fc80-11e9-88ad-525400697544 Report RequestId: ab03a697-fc80-11e9-88ad-525400697544 Duration:223ms Memory:256MB MaxMemoryUsed:22.773438MB 请问这种错误如何处理
2020-03-16老多老多都老白了
大家觉得开发小程序简单吗?不知道大家遇到了哪些问题
2020-03-15还没解决吗?
返回log appendFile err fs_appendFile:fail no,是怎么回事?当点击open-type=‘getUserInfo’的按钮,点击拒绝之后,再调用wx.login接口,返回错误信息如下,是怎么回事? [图片]
2020-03-11人家问的是云开发
小程序云开发获取手机号码小程序云开发 通过 button 组件的open-type ="getPhoneNumber" 想获取用户手机号,点击提醒我 “该appid没有权限” 请问云开发可以获取到用户绑定的手机号码??
2020-03-09