摘要:
初始化地图 引入 import * as esriLoader from 'esri-loader' 主要定义 private mapId: string = '' private map: any private mapview: any private markers: any = {} // 阅读全文
摘要:
问题: this.$refs.districtMap.previewHotel(this.newHotel) 报错: Property 'previewHotel' does not exist on type 'Element | Element[] | Vue | Vue[]'. Propert 阅读全文
摘要:
pull之前先git stash,把本地更改保存到暂存区,pull最新版本后再git stash pop,在本地合并,就不会有merge记录 阅读全文
摘要:
vue-cli3构建svg组件 https://www.cnblogs.com/jianzhen/p/12018914.html this.$emit还有点模糊 父组件列出使用的子组件并调用里面的方法 ref="" this.$ref 模块导出 moudle.exports={'广州市':{path 阅读全文
摘要:
踩坑小技巧(*^_^*)
.stop、$.extend()、gyp报错、node-sass报错 阅读全文
摘要:
一个小小的经过: 开始写的时候打印出来的都是undefined,但是其实已经获取到了,打印的时候还没获取到而已;然后加了回调函数来获取,ajax的回调地狱,不过我现在只是一个get请求;这个时候用的还是onreadystatechange,之前的测试console还没删除,在这个部分发现if/els 阅读全文
摘要:
1. 服务端主动push资源的技术有哪些? websocket event source,SSE 2. 浏览器内不同标签页如何通信? iframe+postMessage(可跨域) localStorage(同源) cookie Window.open(同源) SSE 实例:https://xv70 阅读全文
摘要:
1. @import和link引入样式有什么区别? 本质:@import是CSS提供的语法规则,link是xhtml的标签 加载顺序:@import在页面加载完后加载,link在页面加载时同时加载 兼容:@import兼容ie5以上,link不存在兼容问题 2. 引入样式有几种方式? 内联:标签中使 阅读全文
摘要:
1. 字符串处理效率 +:新建字符串赋值为a+b,返回型字符串销毁原来字符串。 Array.join()不会新建字符串,效率更高。 2. 获得二维数组的行和列 lenX = arr.length lenY = arr[0].length // 这当然是某一行的 3. 数学运算符中的隐式转换 +:a+ 阅读全文
摘要:
1. new操作执行了哪些过程? 创建一个新对象 空对象的对象原型(__proto__)指向构造函数原型对象(prototype) 构造函数的this绑定空对象 执行构造函数返回这个新对象 2. 箭头函数和普通函数有什么区别? this:箭头函数捕获上下文this,普通函数this指向声明处 不支持 阅读全文