- 博客(15)
- 收藏
- 关注
原创 Ant Design Vue Message的loading 操作中提示,在异步接口结果返回后提示消失
【代码】Ant Design Vue Message的loading 操作中提示,在异步接口结果返回后提示消失。
2023-12-27 17:58:51 1053 1
原创 Angular10模块加载问题 Dynamic imports are only supported when the ‘--module‘ flag is set to ‘es2020‘, ‘es
Angular10模块加载问题 Dynamic imports are only supported when the '--module' flag is set to 'es2020', 'es
2022-06-21 18:01:57 785
原创 vue antdesign的下拉选项组件Select在多选场景下,控制不可选择选项的回显问题
背景采用的是ant design 里面的select组件,多选模式,在编辑的场景下,回显已选择多选项。要求有些已选中的值在下拉选项里不可再选择,只能保留,或者删除该选中值。解决方案一开始尝试将不可选择的选项加上属性值 disabled,该项(op2)就可显示在已选选项中,但却不支持删除,不满足目的。最终解决方案:接口中返回【所有】下拉选项,把一些不能选择的选项加上属性值 hidden,值为true,就可以该选项,又可以回显选中项的名称解决思路来源: https://github.com/a
2022-03-22 21:07:54 5057 5
原创 http请求响应状态为canceled
http请求响应状态为canceled问题背景:vue3结合axios , 某个接口请求总是会出现canceled状态,如下图:分析一下,可能是超时时间设置的问题,原始超时时间显示设置的是3s, 而这个接口响应时间大概有5~10s, axios.create({ headers: { 'Content-Type': 'application/json;charset=UTF-8' }, withCredentials: true, timeout: 30000,
2021-12-29 16:18:51 11438
原创 利用正则表达式对字符串中的多个变量的替换
1.查找变量const template = "http://$ip:$port";const paramNames = template.match(/\$(\w+)\b/g); // 匹配所有变量console.log(paramNames);执行结果:正则含义如下图:
2021-10-09 17:04:44 573
原创 vue报错Vue is a constructor and should be called with the “new“ keyword
vue控制台报错:Vue is a constructor and should be called with the “new” keyword原因:底层判断this是否是vue实例 function Vue (options) { if (!(this instanceof Vue) ) { warn('Vue is a constructor and should be called with the `new` keyword'); } this._i
2021-08-22 12:53:58 2471
原创 前端通过请求后端接口下载文件
/*** 下载文件 */ onDownLoad(path, name) { const xhr = new XMLHttpRequest(); xhr.open('GET', path, true); xhr.responseType = 'blob'; xhr.onload = function() { if (this.status === 200) { const fileName = name; ..
2021-06-30 15:50:03 1122
原创 angular6 点击子元素,阻止事件冒泡 event.stopPropagation()
angular6 点击子元素,阻止事件冒泡html中处理 <span (click)="onClick($event);$event.cancelBubble=true;"></span>ts中处理onClick(e) { e.cancelBubble = true; }
2021-06-03 11:43:10 1561
原创 linux命令
快捷键打开终端多个标签页command+T: 打开终端多个标签页command+N : 重新开启一个终端问题:vim进入编辑状态 -> “esc“ -> ":w!"强制保存 -> ":q"退出- E37: No write since last change (add ! to override) 只读属性,无法重写 - 解决方法...
2018-08-24 15:34:49 213
原创 常见 HTTP状态码以及其含义
常见 HTTP状态码以及其含义先部分在扩充 参考http://www.runoob.com/http/http-status-codes.html当浏览者访问一个网页时,浏览者的浏览器会向网页所在服务器发出请求。当浏览器接收并显示网页前,此网页所在的服务器会返回一个包含HTTP状态码的信息头(server header)用以响应浏览器的请求。 HTTP状态码的英文为HTTP S...
2018-04-17 22:31:28 465
原创 前端面试总结
前端基础:1、css的基本选择器有哪些 1.元素选择器 通常是某个元素 ,比如 $("p") 、$("h1"),在页面中选取所有的<p>元素 2. #id 选择器 通过元素的id属性选取指定的元素,页面中元素的id应该是唯一的。 3. .class 选择器 通过指定的class查找元素 4. *通配符选择器 ...
2018-04-16 22:51:48 119
原创 青颖飞帆面试题
一道选择题:二叉树结点个数的问题n2+1=n1七道编程题:1、两个字符串A和B,B字符串的长度比A字符串长度短,怎么判断字符串B的所有字母都不在A字符串里面2、...
2018-04-15 22:35:08 2093
原创 前端面试题
js题目js使用中的一个函数typeof用法, typeof 运算符 ,typeof 是一个一元运算,放在一个运算数之前,运算数可以是任意类型。把类型信息当作字符串返回。typeof 返回值有六种可能: "number," "string," "boolean," "object," "function," 和 "undefined."我们可以使用typeof来获取一个变量是否存在,如
2018-04-10 14:21:07 161
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人