1. brew update error (i) 问题出现及现象描述 昨天换了台电脑,有些软件需要重新安装或更新一下,遇到了下面的问题 cv@xys-MacBook-Pro ~ % brew update touch: /usr/local/Homebrew/.git/FETCH_HEAD: Per ...
分类:
系统相关 时间:
2021-05-24 17:16:15
阅读次数:
0
一、关于promise 1. 处理异步操作 2. 是一个构造函数,可实例化 3. 支持链式调用,解决回调地狱问题 二、 promise初使用 const p = new Promise((resolve,reject) => { setTimeout(()=>{ let n = rand(1,100 ...
分类:
其他好文 时间:
2021-05-24 15:29:20
阅读次数:
0
关于k8s部署错误解决 错误信息 Warning FailedCreatePodSandBox 89s kubelet Failed to create pod sandbox: rpc error: code = Unknown desc = [failed to set up sandbox c ...
分类:
数据库 时间:
2021-05-24 14:33:36
阅读次数:
0
let list = [] let arr = {'a':'1','b':'2','c':'3','d':'4'} for(var key in arr){ console.log("key:"+key+",value:"+arr[key]) list.push({ 'key':key, 'valu ...
分类:
Web程序 时间:
2021-05-24 14:32:47
阅读次数:
0
报错信息: 报错代码: 报错原因: 期望布尔值,得到字符串 1 解决方法: 解决: ...
分类:
其他好文 时间:
2021-05-24 14:19:10
阅读次数:
0
多文件合并下载 依赖于 https://github.com/feross/multistream const streams = []; for (const file of files) { streams.push(fs.createReadStream(file)); } this.ctx. ...
分类:
Web程序 时间:
2021-05-24 14:10:30
阅读次数:
0
安装pymysql报错: TypeError: 'encoding' is an invalid keyword argument for this function Command "python setup.py egg_info" failed with error code 1 in c:\ ...
分类:
数据库 时间:
2021-05-24 13:57:46
阅读次数:
0
Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to tell if a given s ...
分类:
其他好文 时间:
2021-05-24 13:43:08
阅读次数:
0
简介 使用队列实现队列哈哈. code class MyQueue { public: queue<int> q; public: /** Initialize your data structure here. */ MyQueue() { } /** Push element x to the ...
分类:
其他好文 时间:
2021-05-24 13:17:52
阅读次数:
0
问题描述 电脑可以正常联网,但是chrome 内核的浏览器就是会突然无法访问一些网站,但是其它的浏览器就可以比如火狐浏览器,这个时候我们需要对进行DNS的重置刷新来并重启来解决这个问题,不重启的话,可能自会生效一次浏览器访问,再次访问别的网站又会失效的那种。 解决办法 目前的解决办法就是使用管理员打 ...
分类:
其他好文 时间:
2021-05-24 12:18:43
阅读次数:
0