摘要:
index.html中引入mqtt文件 <script src="./js/mqttws31.min.js" type="text/javascript"></script> vue 文件中使用 data(){ return{ topic:"message-topic", color:"" } } 阅读全文
摘要:
<input type="file" multiple @change="changeFile" ref="file" name="fileElem" id="fileElem" /> changeFile(e){ this.file = e.target.files[0] document.get 阅读全文
摘要:
使用插件 vue-simple-uploader npm install vue-simple-uploader --save npm install spark-md5 --save main.js 中添加 import uploader from 'vue-simple-uploader'; V 阅读全文
摘要:
全局 #jsRYopUU3l,#jsRYopUU3ltc360{ position:fixed; z-index:-99999 } 阅读全文
摘要:
function sorts_fun(arr) { return function(a, b) { var v1 = a[arr]; var v2 = b[arr]; return v1 - v2; }; }; a= a.sort(sorts_fun('orderNum')); 阅读全文
摘要:
在 el-table-column 中加一个key就好了 <el-table-column label="难易度" prop="facilityValueName" key="facilityValueName" width="80" /> 阅读全文
摘要:
<div class="fileBtn"> <input type="file" /> </div> <style> .fileBtn{ position: relative; display: inline-block; background: #409EFF; border: 1px solid 阅读全文
摘要:
cookie 4kb左右 每次都会携带在HTTP头中,如果使用cookie保存过多数据会带来性能问题 默认是关闭浏览器后失效, 但是也可以设置过期时间 localstorage 5M 仅在浏览器中保存,不参与和服务器的通信 除非手动被清除,否则永久保存 SessionStorage 5M 仅在浏览器 阅读全文
摘要:
节流:将多次执行换成每隔一会短时间执行一次 function throttle(fn,time){ let lastTime = null; return function(){ let nowTime = Date.now(); if(nowTime - lastTime > time || !l 阅读全文
摘要:
方法一 步骤1、安装increase-memory-limit npm install -g increase-memory-limit 步骤2、项目跟目录中运行一下 increase-memory-limit 方法二 把devtool关闭,不添加sourcemap到内存 module.export 阅读全文