- 博客(6)
- 收藏
- 关注
原创 ivew 报错问题
1. npm run dev错误报告:TypeError [ERR_INVALID_CALLBACK]: Callback must be a function at maybeCallback (fs.js:128:9) at Object.write (fs.js:540:14) at D:\vscode\iview\webpack.dev.config.js:3...
2019-08-15 14:27:33
625
原创 实现九九乘法表并水平垂直居中
1.html&js:2.css:html,body{margin:0;padding:0;}.box{display:flex;align-items: center;justify-content: center;position: absolute;height:100%;width:100%;}注意:如果包含块的高度没有...
2018-10-02 11:30:38
921
原创 nginx解析php CentOS 6.8 64位 腾讯云主机
1.vim /etc/php-fpm.d/www.conf进入php-fpm配置文件,将group 和user都改为nginx;2.vim /etc/nginx/conf.d/ssl.conf已经配置好证书的文件: location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_ind...
2018-06-16 20:51:50
198
原创 腾讯云主机centos6+apache +域名证书
已经通过实验室搭建了LAMP环境。1.SSL证书申请(这个有文档可以自己翻阅一下)这里一定要记得添加一条A记录绑定你的公网ip!!!!例如:主机记录:@记录值:你自己云主机的公网ip就是解析你的域名绑定到公网ip上,使得通过域名就可以访问到你的主机了。2.配置Apache1) rpm -qa | grep httpd 查看httpd版本,如果没有下载过(yum install httpd )2...
2018-06-02 12:57:22
445
原创 setTimeout() 和 process.nextTick()
process.nextTick(function () { console.log('nextTick延迟执行1');});setImmediate(function () { console.log('setImmediate延迟执行1'); process.nextTick(function () { console.log('强势插入'); ...
2018-05-05 12:08:42
417
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人