上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 121 下一页
摘要: //图片审查 $res3 = imgSecCheck("https://*/2122615643.jpg"); var_dump($res3); $str = array('content'=>"检查内容"); //文本审查 $res_str = msgSecCheck($str); var_dum 阅读全文
posted @ 2020-02-24 16:57 与f 阅读(2579) 评论(0) 推荐(0)
摘要: 本文实例为大家分享了微信小程序实现无限滚动列表的具体代码,供大家参考,具体内容如下 实现方式是利用小程序原声组件swiper,方向设置为纵向 :vertical=‘true'设置同时显示的滑块数量:display-multiple-items=‘4'设置自动轮播:autoplay:‘true'. 话 阅读全文
posted @ 2020-02-14 08:20 与f 阅读(5960) 评论(0) 推荐(0)
摘要: 1. ECharts 的微信小程序版本 (echarts-for-weixin ) https://github.com/ecomfe/echarts-for-weixin 2.wx-charts (https://github.com/xiaolin3303/wx-charts ) 第一个比较全, 阅读全文
posted @ 2020-02-07 15:05 与f 阅读(2072) 评论(0) 推荐(0)
摘要: 场景 在使用小程序的时候会出现这样一种情况:当网络条件差或卡顿的情况下,使用者会认为点击无效而进行多次点击,最后出现多次跳转页面的情况,就像下图(快速点击了两次): 解决办法 然后从 轻松理解JS函数节流和函数防抖 中找到了解决办法,就是函数节流(throttle):函数在一段时间内多次触发只会执行 阅读全文
posted @ 2020-01-13 11:33 与f 阅读(1128) 评论(0) 推荐(0)
摘要: 小程序保存图片到本地相册 /** * 下载图标到相册 */ saveToPhone:function(e){ //获取相册授权 let imgSrc = this.data.qrcode_img //要保存的图片url console.log(imgSrc) wx.showLoading({ tit 阅读全文
posted @ 2020-01-13 11:20 与f 阅读(1531) 评论(1) 推荐(0)
摘要: 小程序组件 scroll-view 中分别有上下竖向滑动和左右横向滑动之分,在这次项目中刚好需要用到横向滑动,但在测试过程中发现横向滑动没有了效果(静止在那里没移动过),经调试发现: 1.scroll-view 中的需要滑动的元素不可以用 float 浮动; 2.scroll-view 中的包裹需要 阅读全文
posted @ 2019-12-31 11:23 与f 阅读(541) 评论(0) 推荐(0)
摘要: 使用fastClick.js所产生的一些问题 开发h5活动页时想到移动端会有300ms的延迟,于是便打算用fastClick.js解决。 页面引入fastClick.js后,滑动H5页面的时候发现谷歌浏览器会报错,如下: Unable to preventDefault inside passive 阅读全文
posted @ 2019-12-19 09:27 与f 阅读(3216) 评论(0) 推荐(0)
摘要: 手机浏览器摇一摇 阅读全文
posted @ 2019-12-19 08:55 与f 阅读(421) 评论(0) 推荐(0)
摘要: 实现图片自适应,按照一般情况只需设置: 但是微信小程序里是特例,需要image标签上设置属性mode=widthFix,就是height:auto的作用,css同样设置width:100%,如下: 转 : https://blog.csdn.net/Mo_zifeng/article/details 阅读全文
posted @ 2019-12-18 15:13 与f 阅读(6174) 评论(0) 推荐(1)
摘要: 1. router-link跳转 2. this.$router.push跳转 3. this.$router.replace跳转 4. resolve跳转 接收方怎么接收参数 this.$route.query.serid和this.$route.params.setid,以下举一个接收的例子 注 阅读全文
posted @ 2019-12-16 15:55 与f 阅读(43898) 评论(2) 推荐(2)
上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 121 下一页