个人案例
- 豆子碎片
收集了很多经典的库和代码片段,是编程开发必备工具
编程开发必备工具扫码体验
- 豆子工具
内含IP查询、图片格式转换、音频格式转换等工具
实用小工具扫码体验
<view class="verses"> <view class="verse"> <text>chuang</text><text>qian</text><text>ming</text><text>yue</text><text>guang</text><text>yue</text><text>guang</text> </view> <view class="verse"> <text>窗</text><text>前</text><text>明</text><text>月</text><text>光</text><text>月</text><text>光</text> </view> <view class="verse"> <text>chuang</text><text>qian</text><text>ming</text><text>yue</text><text>guang</text> </view> <view class="verse"> <text>窗</text><text>前</text><text>明</text><text>月</text><text>光</text> </view> </view>
有没有更好的方法,处理拼音和汉字上下对齐的排版?目前的排版如下: .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我也有这样的需求,我试试
如何处理二维数组?数据呈现是这样的,怎么在页面上点击Stewardess,就能打印它,我获取的都是其中数组 [图片] <block wx:for="{{DataList}}" wx:key="index" wx:for-index="myIndex"> <view class="aa"> <view class="bb">{{item.date}}</view> <block wx:for="{{item.data}}" wx:key="index2" wx:for-item="data" wx:for-index="mySubIndex"> <view wx:for="{{data}}" wx:key="index3" wx:for-item="itm"> <text class="cc" bindtap="transfer" data-index="{{myIndex}}" data-subindex="{{mySubIndex}}">{{itm}}</text> <!-- <text class="cc" bindtap="transfer" data-index="{{myIndex}}" data-subindex="{{mySubIndex}}">{{data}}</text> --> </view> </block> </view> </block> // 这是数据 DataList=[{"date":"2023-05-26","data":[["dust","gang","mechanic"],["refuge","stewardess"]], //transfer函数获取指定单词 transfer(event) { const index = event.currentTarget.dataset.index; const subIndex = event.currentTarget.dataset.subindex; const element = this.data.DataList[index].data[subIndex]; console.log(event.currentTarget.dataset) console.log(element); //["refuge","stewardess"] 我想得到是stewardess }
2023-06-02必须的
wx.uploadFile方法使用HTTPS请求时,必须配置域名吗?项目开发阶段没有域名,直接访问的ip地址,并开启了不校验合法域名、web-view、TLS及HTTPS证书,wx.requst()可以正常通讯,但是wx.uploadFile()时报错。下面是代码和打印的报错信息。求解~ [图片] [图片]
2022-04-10检查一下url,是不是没有使用https
域名已经是https,uploadfile域名也加入了,但是还是报如下错误,这是什么情况?Bad RequestYour browser sent a request that this server could not understand. Reason: You're speaking plain HTTP to an SSL-enabled server port. Instead use the HTTPS scheme to access this URL, please.
2022-04-10我的帖子也丢失了,为什么
你好,为啥我的公众号突然一篇文章都搜不到了,全标题也不行,麻烦处理一下哦?公众号名称:渣叔捷报笛声说体育 原始ID:gh_dfde32e3476d
2022-04-05我通过以下几个步骤临时解决, 1,将本地设置的调试基础库调整为2.2.5,以前的是2.12.2,调高也不行,这个版本的模拟器操作最顺畅,使用iphone x模拟器。 2,我原文件夹中有两个wxs文件,合并为1个文件。将里面的函数进行合并。 3,我给的参数是number,但是switch里面使用number不起作用,调整为字符串解决。 // 如果case中数字不加字符串,在wxml调用中不起作用,有大神知道原因的可以帮忙解释下 var procstat = function(parm) { var result = ''; switch (parm) { case '0': result= '未开始' break; case '1': result= '已发送' break; case '2': result= '发送失败' break; } return result; }
在wxml中引入wxs,微信开发者工具崩溃!在wxml中引入wxs函数,wxml没有函数没有作用,使用console.log在wxs进行调试,开发者工具调试器中console栏,显示[WXS RUNtime info] 然后模拟器崩溃,或开发者工具崩溃[图片]
2021-04-02我也碰到了类似问题,非常感谢!
openapi.templateMessage.send调用失败,官方不再支持云调用推送订阅消息?使用给用户发送订阅消息的云调用方法时报错,显示此api已经不支持?这意思时官方已经不支持云调用订阅消息的推送了吗? 时间:2020-05-29 Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID , cloud function service error code -504002, error message Error: errCode: 45103 | errMsg: openapi.templateMessage.send:fail This API has been unsupported hint: [FZCSFa0762shc2]
2021-04-01https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readFile.html这个api不可以吗?
微信小程序如何获取本地数据?需求是本地有个文件,文件里有1w个号码,需要将号码输出至小程序的屏幕上。 我的思路是循环在wxml里输出data列表,data读取本地文件中的数据。 找了半天在论坛和百度里找不到data获取本地文件数据的方法,真诚求问
2021-03-25我也碰到此类问题,不知道是我的局域网服务问题, 还是小程序mdns api的问题。
小程序用mdns为什么有时候搜得到局域网ip有时候却不行呢?mdns搜索不稳定是什么问题
2021-03-21https://developers.weixin.qq.com/community/develop/doc/000accd28782502fb93945c335fc09?_at=1616052482901
微信小程序NFC识别身份证信息,这块参数不明白是什么?求大佬解答?[图片][图片]
2021-03-18