
小程序
Las_wang
一个菜鸟程序员的成长之路。
展开
-
微信小程序实现字幕上下滚动
page({ data:{ adList:[{ 'url':'', 'title':'刚刚预约了服务' },{ 'url':'', 'title':'内容内容内容内容内容' }], } }) <swiper class="swiper_zi" vertical="true" autoplay="true" circular="true" interval="3000"> <block wx:for="{{a原创 2021-06-30 16:51:19 · 1943 阅读 · 0 评论 -
微信小程序部分页面navigationBarTextStyle失效
排查了半天发现,在app.json page配置里面没有写入该页面。。。原创 2021-04-06 10:32:28 · 1771 阅读 · 2 评论 -
小程序动态生成二维码
使用的weapp-qrcode.js 第二次不显示了,我淦,查了半天,父级要用hidden。。。。。 draw: function (url) { drawQrcode({ x: 0, y: 0, width: 150, height: 150, canvasId: 'myQrcode', text: url, callback(e) { console.log('e: ', e) }原创 2021-04-01 16:29:59 · 597 阅读 · 0 评论 -
小程序中文md5与后台不一致问题
最近开发遇到这个问题 小程序设计中文md5前需要转换utf-8就ok了 utf8: function (inputStr) { //将中文转为UTF8 var outputStr = ""; for (var i = 0; i < inputStr.length; i++) { var temp = inputStr.charCodeAt(i); //0xxxxxxx if (temp < 128) { outputStr原创 2021-03-10 14:17:02 · 380 阅读 · 0 评论 -
小程序view文字垂直水平居中css
.function{background:#21262D;border-radius: 5pt;height: 30px;padding: 5pt 0;display: flex;flex-direction: row;} .function view{width: 50%;float: left;text-align: center;color: white;font-size: 10pt;height: 100%;display: flex;justify-content: center;align-i原创 2021-02-02 17:01:57 · 928 阅读 · 0 评论 -
小程序页面跳转
wx.switchTab 跳转到tabbar页面 ,别的方法无法跳转原创 2021-01-13 18:24:25 · 126 阅读 · 0 评论 -
小程序开发-表单提交
html <form bindsubmit='formSubmit'> <view class="input-option"> <view class="title"> <image id='tel-icon' src="{{telIcon}}" mode="widthFix"></image>账号 </view> <view>原创 2021-01-08 15:29:47 · 347 阅读 · 0 评论