个人案例
- 豆子碎片
收集了很多经典的库和代码片段,是编程开发必备工具
编程开发必备工具扫码体验
- 豆子工具
内含IP查询、图片格式转换、音频格式转换等工具
实用小工具扫码体验
- we分析无法打开?
we分析无法打开了
06-29 - we分析小程序无法获取数据?
数据无法获取,这两天出现的,现象特别频繁。 [图片]
04-17 - We分析小程序这两天不稳定?
这个小程序这两天不稳定,经常出现无法获取数据。需要再次刷新才可以。
04-16 - 已认证的个人小程序无法在QQ中打开?
你好,我的小程序豆子工具已经微信认证,无法在QQ中打开,我还需要再做些什么?请帮助我
04-16 - tcpSocket在收到关闭帧后没有回调onclose()?
小程序在收到close帧后,close帧是通过wireshark查看的,小程序没有回调onclose,而是调用了onerror。 安卓客户端:8.0.48 t = wx.createTCPSocket() t.onError(that.tErr) t.onConnect(that.tConn) t.onMessage(that.tMsg) t.onClose(that.tClose) t.connect({ address: ip, port: port, timeout: 3, }) 和注册顺序有关系吗?这是小程序的一个报错提示: [图片] 这里可以看到socket已经关闭,调用了onError,但是没有调用onClose。
03-27 - css排版求教?
[图片] 现在想让诗句上下都对齐,不单单每一行。求css的参数,使用flex布局。 css代码如下: text { font-family: "Microsoft YaHei"; } .container { display: flex; flex-direction: column; align-items: center; background-color: #f2f2f2; } /* 盒子 */ .box { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 10rpx; } /* 标题 */ .title { display: flex; flex-direction: row; align-items: flex-end; padding: 0 10rpx; } .title .pinyin { font-size: 1.5em; } .title .hanzi { font-size: 1.8em; } /* 诗人信息 */ .info { display: flex; flex-direction: row; align-items: flex-end; margin-bottom: 10rpx; } /* 朝代 */ .dynasty { display: flex; flex-direction: row; margin-right: 10rpx; } .dynasty .pinyin { font-size: 1.2em; } .dynasty .hanzi { font-size: 1.5em; } /* 诗人 */ .poet { display: flex; flex-direction: row; } .poet .pinyin { font-size: 1em; } .poet .hanzi { font-size: 1.3em; } /* 诗句 */ .verses { display: flex; flex-direction: column; align-items: center; justify-content: center; white-space: pre-wrap; text-align: justify; word-break: break-all; vertical-align: middle; } .verse { display: flex; flex-direction: row; align-items: flex-end; justify-content: center; vertical-align: middle; } .verse .pinyin { font-size: 1em; vertical-align: middle; } .verse .hanzi { font-size: 1.3em; vertical-align: middle; }
2023-06-05 - 有没有更好的方法,处理拼音和汉字上下对齐的排版?
目前的排版如下: .verses { display: flex; flex-direction: column; white-space: pre-wrap; text-align: justify; word-break: break-all; } .verse { display: flex; flex-direction: row; align-items: center; justify-content: space-evenly; } .verse text { padding: 0 10rpx; } [图片]
2023-06-02 - 文章页关注?
怎么知道是哪个文章
2023-05-29 - 文章页关注?
怎么知道是哪个文章
2023-05-29 - wx.chooseMedia示例打印错误?
wx.chooseMedia({ count: 9, mediaType: ['image','video'], sourceType: ['album', 'camera'], maxDuration: 30, camera: 'back', success(res) { console.log(res.tempFiles.tempFilePath) // 这个是错误,返回的数组 console.log(res.tempFiles.size) // 这个是错误,返回的数组 } })
2023-01-30