https://stackoverflow.com/questions/53784440/wcf-on-net-core-missing-client-negotiate-scheme-in-authorization-scheme Well its too bad if another proje ...
分类:
Web程序 时间:
2020-07-07 15:38:36
阅读次数:
92
<body> <div id="app"> <my-pnc2></my-pnc2> </div> </body> <script type="text/javascript"> //1.子组件 const cpnc1=Vue.extend({ template:` <h3>你好Vue1</h3> ` ...
分类:
其他好文 时间:
2020-07-07 12:49:07
阅读次数:
58
var arr=[]; for(var i=0;i<255;++i){ arr.push("10.110.80."+i); } for(var i=0;i<arr.length;++i){ var ip=arr[i]; testip(ip); } function testip(ip){ let p ...
分类:
其他好文 时间:
2020-07-06 16:24:13
阅读次数:
47
shelljs https://github.com/shelljs/shelljs 实例 var shell = require('shelljs'); if (!shell.which('git')) { shell.echo('Sorry, this script requires git') ...
分类:
Web程序 时间:
2020-07-06 11:12:54
阅读次数:
98
nodejs读写yaml npm install -g js-yaml // read.js const fs = require('fs'); const yaml = require('js-yaml'); try { let fileContents = fs.readFileSync('./ ...
分类:
Web程序 时间:
2020-07-06 11:08:47
阅读次数:
160
网上很多人都说安装Docker要升级windows专业版以上,是因为windows的虚拟机Hyper-v必须要专业版以上的版本才能安装。 那么你可以把系统升级到专业版,或者直接在home 版上开启Hyper-v,完全可以的。 但是有一点不完美,后面再来说怎么不完美。 当然可以通过修改注册表的方式,来 ...
前提你已经在单例模式下面更改了root用户的密码(就是你知道自己root用户的密码是多少) 第一步,以root登录其它控制台(eg. kali using Ctrl+Alt+F2) 第二步: vim /etc/pam.d/gdm-autologin 找到这一行:auth required pam_s ...
分类:
系统相关 时间:
2020-07-06 01:00:41
阅读次数:
179
全局安装:npm install express -g 引入express let express = require('express'); let app = express(); app.get('/',(req,res)=>{ res.send('这是首页') }) app.listen(8 ...
分类:
Web程序 时间:
2020-07-05 22:44:33
阅读次数:
122
Servlet 3.0 新特性,@WebServlet,ServletContainerInitializer,这两个新特性实现了 Spring 无配置文件(XML),所以非常重要。Spring 通过 SpringServletContainerInitializer 实现无配置化,注册 Servl ...
分类:
Web程序 时间:
2020-07-05 21:09:19
阅读次数:
90
目录 序言 React 的核心思想 传统 diff 算法 React diff 两个假设 三个策略 diff 具体优化 tree diff component diff element diff 小结 参考 1.序言 此篇文章所讨论的是 React 16 以前的 Diff 算法。而 React 16 ...
分类:
编程语言 时间:
2020-07-05 19:18:01
阅读次数:
102