function getBase64 (file) { return new Promise(function (resolve, reject) { let reader = new FileReader() let imgResult = '' reader.readAsDataURL(file ...
分类:
其他好文 时间:
2020-07-27 15:52:09
阅读次数:
171
PowerShell中常用的网络命令: Get-NetIPConfiguration, Get-NetIPAddress, Get-Connection, Get-NetConnection 和 Resolve-DnsName, 可等效替代 IPConfig、PING 和 NSLookup。 ...
分类:
系统相关 时间:
2020-07-27 09:19:11
阅读次数:
103
版本错误 处理方式 修改scipy的本文为 1.1.0 :pip install scipy==1.1.0 ...
分类:
其他好文 时间:
2020-07-26 22:54:48
阅读次数:
70
1.let <script> //1.声明变量 let a; let b,c,d; let e =100; let f=521,g='iloveyou',h=[]; //2.let变量不能重复定义 例 // let peope = 'bill' // let peope = 'jom' //会报错: ...
分类:
其他好文 时间:
2020-07-26 19:49:20
阅读次数:
86
<script type="text/javascript"> let promise=new Promise((resolve,reject)=>{ console.log('promise初始化状态:pending '); // 同步执行 setTimeout(()=>{ console.log ...
分类:
其他好文 时间:
2020-07-26 15:12:41
阅读次数:
77
问题: An error occured while deploying the file. This probably means that the app contains ARM native code and your Genymotion device cannot run ARM ins ...
分类:
移动开发 时间:
2020-07-24 22:03:36
阅读次数:
160
C:\Program Files (x86)\Jenkins\plugins\ruby-runtime\WEB-INF\lib\classes.jar: The process cannot access the file because it is being used by another pr ...
分类:
其他好文 时间:
2020-07-24 21:30:48
阅读次数:
197
jq可以给shell提供json解析功能,但托管在epel仓库 yum -y install epel-release yum clean all yum makecache yum -y install jq 若安装过程遇到如下问题: yum Cannot retrieve metalink fo ...
分类:
其他好文 时间:
2020-07-24 19:06:44
阅读次数:
97
App({ onLaunch: function(options) { }, wxLogin() { let that = this; return new Promise((resolve, reject) => { wx.request({ url: 'www.xx.com', success: ...
分类:
微信 时间:
2020-07-24 15:36:17
阅读次数:
101
首先,坐好准备工作,在feature-resolve-conflict分支上作如下改动: 在master分支作如下改动: 假如现在我们需要将master分支合并到feature-resolve-conflict分支。 1、首先拉到最新的feature-resolve-conflict代码 2、然后右 ...
分类:
其他好文 时间:
2020-07-24 09:37:29
阅读次数:
266