今天带来的知识点既简单又使用,是不是感觉非常的棒啊,OK,不多说了,咱们开始往下看. for...of 是什么 for...of 一种用于遍历数据结构的方法。它可遍历的对象包括数组,对象,字符串,set和map结构等具有iterator 接口的数据结构。 (上面这句话如果有看不懂的地方,自动忽略即可 ...
分类:
其他好文 时间:
2020-04-27 19:51:17
阅读次数:
62
前言 最近有点闲,想起关注已久的mpvue写小程序,所以稍微肝了半个多月写了个github版的微信小程序,已上线。现在总结一下遇到的坑。 扫码体验、 项目地址、https://github.com/cheesekun/wx-github mina坑 scroll-view 高度 可滚动视图区域。使用 ...
分类:
微信 时间:
2020-04-26 14:11:17
阅读次数:
91
better-scroll的使用 1.下载better-scroll cnpm install better-scroll --save 2.在vue中使用它,由于我们可能在很多情况下使用better-scroll,来达到监听页面滚动的位置,实现例如上拉加载,下拉刷新的操作, 所以我们需要把bett ...
分类:
其他好文 时间:
2020-04-26 10:48:40
阅读次数:
134
<style type="text/css"> #info{ width: 300px; height: 500px; background-color: #bfa; overflow: auto; } </style> <script type="text/javascript"> window. ...
分类:
其他好文 时间:
2020-04-25 22:02:16
阅读次数:
85
wxml: <view catchtouchmove="preventTouchMove" wx:if="{{canvas_ma}}"> <view class='warp_' style="overflow-y: scroll;"> <view style='' style='position: ...
分类:
微信 时间:
2020-04-25 19:15:17
阅读次数:
98
wxml: <view catchtouchmove="preventTouchMove" wx:if="{{canvas_haoBao}}"> <view class='warp_' style="overflow-y: scroll;"> <view style='' style='positi ...
分类:
微信 时间:
2020-04-25 19:05:39
阅读次数:
103
安装依赖 npm install vue-seamless-scroll --save1main.js文件里面引入使用 import scroll from 'vue-seamless-scroll'Vue.use(scroll)12html代码 <template> <vue-seamless-s ...
分类:
其他好文 时间:
2020-04-25 10:40:02
阅读次数:
716
实现点击表格行变色 html文件 <st #st [data]="data" (change)="changeClick($event)" [columns]="columns" [page]="page" [widthMode]="STWidthMode" [scroll]="{ x: '350p ...
分类:
其他好文 时间:
2020-04-25 00:45:02
阅读次数:
236
工作中的项目不止有页面繁多的模块化项目,还会只有一两个页面的类似于填写信息参与活动的活动页。这个时候,就可以回归以前的三剑客模式,在 index.html 里引用 vue.js 进行开发。 关键点: 引入 babel-polyfill 以转换 es6 的代码,需要作为第一个引入的 script 脚本 ...
分类:
其他好文 时间:
2020-04-21 18:06:52
阅读次数:
53
<scroll-view bindscrolltolower="YourFunction" lower-threshold=“50”></scroll-view> 1 YoourFunction(){ 2 console.log("触底了"); 3 wx.showToast({ 4 title: ' ...
分类:
微信 时间:
2020-04-21 14:58:30
阅读次数:
366