需求obj1={ a:'asd', b:'aassd', c:'assdfd', d:'asfdgd' } obj2={ a:'', c:'' }结果obj2={ a:'asd', c':assdfd' }实现Object.keys(obj2).map(function(key){ obj1[key] && (obj2[key] = obj1[key]); })
角色权限控制技术要点Vuejs的自定义指令JavaScript基础知识Js Array基础知识Type Script 基础语法变量类型代码实现主要就是得到用户的roles和authorities通过对比指令集跟用户存在的数据校验,存在即通过/** * 按钮级权限控制 */ import type { App } from 'vue'; import { useUserStore } from '@/store/modules/user'; // 数据范例 // useUserStore: { // roles: ['super', 'admin'], // authorities: ['system:user:add','system:user:list','system:user:update','system:user:remove'] // } // 校验范例 // <button v-role="['admin']">删除</button> // <button v-any-role="['adm
前言年前安排了个人才云大数据前端项目,其中大部分用到了Echarts实现图标展示,有两个人才表滚动。当初以为是单纯表格,然后以为是scroll类型的鼠标滚轮的表格滚动。再次确认才知道需要自动滚动技术要点js定时器基本操作预览图实现代码CSS样式摘要.container .box-body { position: relative; height: 70%; color: #fff; padding: 3%; overflow: hidden; } .main-bottom table thead { background: rgba(94, 138, 226, 0.1); } /* 排名 */ .main-bottom table .first { background: linear-gradient(90deg, #6648F5, transparent, transparent) } .main-bottom table .second { background: linear-gradient(90deg, #
数字取整可用于input change 的数字输入处理/** 数字整形 */ numInputChange(val, max) { // 转数字 let transferNum = parseInt(val); // 小于0 if(transferNum < 0) { transferNum = Math.abs(transferNum); } else if(transferNum === 0) { transferNum = 1; } else if(transferNum >= max) { transferNum = max; } return transferNum; },简单Ajax实现function simpleAjax(options) { options = options || {}; options.async = options.async || true; options.type = (options.type || 'GET').toUpperCase();
官方文档地址https://fengyuanchen.github.io/compressorjs/主要目录dist/ ├── compressor.js (UMD) ├── compressor.min.js (UMD, compressed) ├── compressor.common.js (CommonJS, default) └── compressor.esm.js (ES Module)使用查看下载和使用,简要代码如下<input type="file" id="file" accept="image/*">new Compressor('这里传入文件对象fileObj', { width: 1000, quality: 0.8, success: function (result) { console.log('Output: ', result); var sourceSize
lettered
生,亦我所欲也;义,亦我所欲也。