摘要: 下载引入注册,通过 npm 获取 echarts npm install echarts --save 在main.js文件里引入并挂载到原型上 import echarts from 'echarts' Vue.prototype.$echarts = echarts 页面代码: // 页面准备一 阅读全文
posted @ 2020-05-21 11:40 Jennyishere 阅读(449) 评论(0) 推荐(0)
摘要: INSERT INTO table_name (field1, field2,...fieldN) VALUES (valueA1,valueA2,...valueAN),(valueB1,valueB2,...valueBN),(valueC1,valueC2,...valueCN),...... 阅读全文
posted @ 2020-05-21 10:53 Jennyishere 阅读(288) 评论(0) 推荐(0)
摘要: 1,下载 npm install xss -S 2.在使用wang的地方引入 import xss from 'xss 3.找到editor实例 this.editor = new E(this.$refs.toolbar, this.$refs.editor); 4.找到html内容进行xss过滤 阅读全文
posted @ 2020-05-21 09:51 Jennyishere 阅读(2614) 评论(1) 推荐(1)
摘要: 使用过两种解决方案: 1是用原始的for循环 for(let i=0;i<_this.dataShow.length;i++){ _this.dataShow[i].MarkContent = await _this.$curl.get(_this.dataShow[i].MarkContentUr 阅读全文
posted @ 2020-05-21 09:48 Jennyishere 阅读(1990) 评论(1) 推荐(2)
摘要: 最近刚好在项目中多次使用reduce解决一些数据问题,分享如下: 1.数组对象去重 arr= arr.reduce((cur,next) => { obj[next.id] ? "" : obj[next.id] = true && cur.push(next); return cur; },[]) 阅读全文
posted @ 2020-05-21 09:46 Jennyishere 阅读(392) 评论(0) 推荐(0)
摘要: 1、序列化 JSON.stringfy(obj)=='{}' 2、遍历键 Object.keys(obj).length==0 阅读全文
posted @ 2020-05-21 09:45 Jennyishere 阅读(162) 评论(0) 推荐(0)