class Human { constructor(name, age) { //name age 是传参 this.name = name; this.age = age } } let ren = new Human("小明", 100); // 使用Human类,实例化类 console.lo ...
分类:
Web程序 时间:
2021-06-07 20:11:10
阅读次数:
0
####出现错误 提示信息: router.beforeEach((to, from, next) => { if (!storage.getItem('userInfo')) { console.log('error') next({ path: '/login' }) } else { cons ...
分类:
其他好文 时间:
2021-06-06 19:32:40
阅读次数:
0
//真数组转伪数组 var obj2 = {0:"张三",1:"李四",length:2}; var arr = []; [].push.apply(arr,obj2); //真数组转伪数组 console.log(arr); //伪数组转真数组 var arr = [].slice().call( ...
分类:
编程语言 时间:
2021-06-06 19:04:18
阅读次数:
0
window下安装: 1.到官网上下载mysql(zip包) 》①mysql的bin目录下新建my.ini文件,配置参考如下: 》②path中配置好环境变量 》③以管理员身份运行mysql服务 mysql --install 安装服务,控制台会提示:Service successfully inst ...
分类:
数据库 时间:
2021-06-06 18:54:05
阅读次数:
0
(function f1() { var num = 10; window.num = num;})(); console.log(num); ...
分类:
Web程序 时间:
2021-06-05 18:35:46
阅读次数:
0
这个例子的完整源代码: import { Component, OnInit, Injectable, Injector } from '@angular/core'; @Injectable() class UsefulService { constructor(){ console.log("U ...
前言 为啥写这篇? 因为听 grep、sed 教程的时候有这个命令栗子 加上工作中,运维给我排查问题的时候也用到了,感觉挺重要,先了解为敬! 命令作用 显示用户和TTY的最后登录次数 啥是 TTY 终端(Terminal) =TTY 语法格式 last [-n] [-h host] [-t tty] ...
分类:
系统相关 时间:
2021-06-04 19:33:37
阅读次数:
0
1、在浏览器中的console输入 document.getElementById('xiaoyou-robot-wrapper').style='display:none' 隐藏页面图标 2、 在浏览器中的console输入 document.getElementById('xiaoyou-rob ...
分类:
其他好文 时间:
2021-06-04 19:18:19
阅读次数:
0
var intList = new List<int>() { 1 }; var readOnlyList = new ReadOnlyCollection<int>(intList); var immutableList = intList.ToImmutableList(); Console.F ...
用 notion 管理信用卡与花呗 Notion原文,排版更佳 概述 不需要提醒功能和安卓用户可以忽略Scriptable和快捷指令 app的设置 Notion 建立信用卡表格,录入信用卡基本信息,自动计算还款日 使用 Scriptable iOS app内建立组件,调用 notion 私人 API ...
分类:
其他好文 时间:
2021-06-02 17:32:18
阅读次数:
0