何谓节流和防抖?
节流
节流的意思是,规定时间内,只触发一次。比如我们设定500ms,在这个时间内,无论点击按钮多少次,它都只会触发一次。具体场景可以是抢购时候,由于有无数人 快速点击按钮,如果每次点击都发送请求,就会给服务器造成巨大的压力,但是我们进行节流后,就会大大减少请求的...
yekong
3年前 (2022-04-28)
喜欢
数据大屏设计案例 OBD车辆在线平台 初晓
效果图
...
yekong
3年前 (2022-04-28)
喜欢
uniapp开发时,会遇到某些部分需要跟随滚动,使用此方法,可以获取我们跟随滚动所需要的一些信息。
此方法封装自uni的nodesRef.boundingClientRect (opens new window),它极大简化了 使用复杂度,内部使用Promise,可以让用户同步获...
yekong
3年前 (2022-04-28)
喜欢
route(Object)
此为一个路由跳转方法,内部是对uni多个路由跳转api的封装,更方便使用
export default{
onLoad() {
setTimeout(() => {
uni.$u.route({
url: 'pages/co...
yekong
3年前 (2022-04-28)
喜欢
guid(length = 32, firstU = true, radix = 62)
该函数可以生产一个全局唯一、随机的guid,默认首字母为u,可以用于当做元素的id或者class名等需要唯一,随机字符串的地方,因为id或者class不能以数字开头。
length <...
yekong
3年前 (2022-04-28)
喜欢
使用前需要先配置cos跨域,不然无法上传文件。
腾讯云cos配置跨域
/**
* @Author: 858834013@qq.com
* @Name: FileUpload
* @Date: 2022-03-04
* @Desc:
*/
<template>
&l...
yekong
3年前 (2022-04-28)
喜欢
安装依赖
cnpm i -S vue-uuid
全局使用
import UUID from "vue-uuid";
Vue.use(UUID);
使用
this.$uuid.v1()
局部使用
import { uuid } from 'vue-uuid...
yekong
3年前 (2022-04-28)
喜欢
vue2项目开发时,需要生成一些唯一的标识,于是找了一个组件。
安装依赖
npm i vue-uuid
生成uuid
import { uuid } from 'vue-uuid';
console.log(uuid.v1())
结果
66d6d470-c50b-11ec-8...
yekong
3年前 (2022-04-28)
喜欢
Property or method "$u" is not defined on the instance but referenced during render. Make sure that this property is reactive, eit...
yekong
3年前 (2022-04-28)
喜欢
打开设置
ctrl+,
字体大小设置
控制台字体大小设置
配色方案字体大小设置
...
yekong
3年前 (2022-04-27)
喜欢