首先自定义一个专门处理异步的 hooks import {reactive, toRefs} from "vue"; const useAsyncFn = (fn)=>{ let data = reactive({value:undefined ,loading:false,err:undefine ...
分类:
Web程序 时间:
2021-04-24 11:55:00
阅读次数:
0
a、null表示"没有对象",即该处不应该有值,转为数值时为0。典型用法是:作为函数的参数,表示该函数的参数不是对象。作为对象原型链的终点。 b、undefined表示"缺少值",就是此处应该有一个值,但是还没有定义,转为数值时为NaN。典型用法是:变量被声明了,但没有赋值时,就等于undefine ...
分类:
其他好文 时间:
2021-01-04 11:10:44
阅读次数:
0
[root@localhost ~]# virsh undefine vhuser-test1error: Failed to undefine domain vhuser-test1error: Requested operation is not valid: cannot undefine d ...
分类:
其他好文 时间:
2020-11-04 19:04:17
阅读次数:
16
1 .text 2 .global _start 3 4 _start: 5 b reset /* vector 0 : reset */ 6 ldr pc, und_addr /* vector 4 : und 此时又跳回到4k flash中 */ 7 8 /* 这个操作是为了防止start.S超 ...
分类:
其他好文 时间:
2020-10-18 16:31:11
阅读次数:
22
报错:Cannot read property 'map' of undefine <ul className={styles.resul}> { this.state.isfalsepic.map((item) => { return ( <li className={styles.resli} ...
分类:
其他好文 时间:
2020-07-10 16:49:16
阅读次数:
48
删除虚拟机 virsh list virsh list virsh destroy vm4强制停止虚拟机 virsh undefine vm4 删除虚拟机 更新当前文件,并查找包含虚拟机vm4的所有内容 删除和vm4一切相关的内容 快照 #!/bin/bashname=`virsh list | a ...
分类:
其他好文 时间:
2020-06-30 12:31:04
阅读次数:
75
箭头函数中this的指向问题 1. 箭头函数不会改变this的指向,在它外面拿到的this是什么,它里面获取到的就是什么 2. setTimeout方法挂载在window上面,高程中写道, 超时调用的代码都是在全局作用域下执行 ,非严格模式下this指向window对象,严格模式下为undefine ...
分类:
其他好文 时间:
2020-05-24 09:36:19
阅读次数:
37
gem install bundlerERROR: Loading command: install (LoadError) cannot load such file -- opensslERROR: While executing gem ... (NoMethodError) undefine ...
分类:
系统相关 时间:
2020-04-08 09:27:53
阅读次数:
169
类型转换: 1)显示转换 使用方法直接转换 Number() 数值:转换后还是原来的值 字符串:如果可以转化成数值,则转化为数值,否则转换为NaN,空字符串转换为0 布尔值:false转换成0,true转化成1 undefine: 转成NaN null: 转成0 对象类型转换:先调用自身的value ...
分类:
其他好文 时间:
2020-03-03 21:05:47
阅读次数:
95
出现虚拟网卡是因为安装时启用了 libvirtd 服务后生成的 关闭方法 virsh net-list 名称 状态 自动开始 持久 default active yes virsh net-destroy default virsh net-undefine default systemctl re ...
分类:
其他好文 时间:
2019-12-20 13:32:28
阅读次数:
84