前言记得刚找工作那会,几种数据类型是必问题,当时的答案一般都是七种——字符串(String)、数字(Number)、布尔(Boolean)、数组(Array)、对象(Object)、空(Null)、未定义(Undefined),时至今日,某些网络教程上还是这样的分类:其实,随着 ECMAScript ...
分类:
其他好文 时间:
2021-06-25 16:35:01
阅读次数:
0
The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:\Users\$USER\AppData\R ...
分类:
其他好文 时间:
2021-06-24 18:32:12
阅读次数:
0
写代码时,本来想切换到主分支,但是切换失败,因为我本地的代码修改了,所以想要放弃本地修改的代码(或者有时代码改的乱七八糟想放弃本地修改) 参考:https://www.cnblogs.com/qufanblog/p/7606105.html 1. 未使用git add 缓存代码 使用git chec ...
分类:
其他好文 时间:
2021-06-24 17:44:11
阅读次数:
0
Linux Nginx日志切割脚本 版本 操作系统版本IP版本 Centos 172.21.3.220内网 7.x Nginx日志切割脚本 #!/bin/bash #设置日志文件存放目录 logs_dir="/usr/local/nginx/logs" store_dir="/data/backup ...
分类:
系统相关 时间:
2021-06-23 17:02:55
阅读次数:
0
问题描述 页面需要动态计算table高度,在computed属性中使用了$refs但是无法得到一个可用的数据 问题分析 computed中 return一个常量时不会再触发数据双向绑定,一开始$refs无效,此时computed属性返回了一个常量值,所以后续不在触发。 问题解决 // 使用setTi ...
分类:
其他好文 时间:
2021-06-23 16:26:40
阅读次数:
0
简单类型即基本数据类型,复杂数据类型即引用类型 简单数据类型:string,number,bool,undefined,null (其中null比较特殊,是空对象类型object) 复杂数据类型:通过new创建的对象 栈:由系统自动分配释放存放函数的参数值,局部变量的值等 简单数据类型是存在栈中的 ...
分类:
Web程序 时间:
2021-06-20 18:42:17
阅读次数:
0
import { createApp } from 'vue' import App from './App.vue' import router from './router' import store from './store' import vant from 'vant'; import ...
分类:
其他好文 时间:
2021-06-20 18:02:48
阅读次数:
0
https://ac.nowcoder.com/acm/contest/11212/E #include<bits/stdc++.h> using namespace std; // define a point class to store a point class Point { public ...
分类:
其他好文 时间:
2021-06-19 18:50:57
阅读次数:
0
Mac使用npm更新包出现问题,使用n切换到不同版本时出错信息还不相同 npm ERR! Cannot read property 'resolve' of undefined npm ERR! asyncWrite is not a function 怀疑是使用brew更新所有软件时顺带更新了no ...
分类:
系统相关 时间:
2021-06-19 18:42:10
阅读次数:
0
下载unity 在官网下载unity unity有三个版本,个人版免费,pro和专业版收费. 个人版 在导出exe文件时不能去掉水印片头。其他版本可以。 地址[https://store.unity.com/cn/download?ref=personal] 安装 安装的时候 注意有个vs下载 如果 ...
分类:
编程语言 时间:
2021-06-18 19:07:00
阅读次数:
0