摘要: 节流 节流(throttle):当持续触发事件时,保证一定时间段内只调用一次事件处理函数 vue项目 验证码登录--以及倒计时 <template> <button @click="handleCaptcha">{{captcha}}</button> </template> <script> ex 阅读全文
posted @ 2020-05-13 17:38 谬论结局 阅读(491) 评论(0) 推荐(0) 编辑
摘要: axios的get请求: this.axios.get('/list/getPro',{params: {page: 1,size: 10}}).then((res) => { console.log(res) }) 这里“params”必须加,不然参数传递失败 axios的post请求: this 阅读全文
posted @ 2020-05-06 17:14 谬论结局 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 动态设置rem (function (doc, win) { var docEl = doc.documentElement, resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize', recalc = f 阅读全文
posted @ 2020-05-06 14:28 谬论结局 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 单行超出隐藏省略号 overflow: hidden; text-overflow:ellipsis; white-space: nowrap; 多行超出隐藏省略号 display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-cl 阅读全文
posted @ 2020-04-28 09:36 谬论结局 阅读(8811) 评论(0) 推荐(0) 编辑