热门 linux安装pm2

时间:2018-7-28   作者:lininn   分类:   热度:2516°    
时间:2018-7-28   分类:    热度:2516  
npm install -g pm2 提示pm2命令未找到  ln -s /software/node/node-v10.7.0-linux-x64/lib/node_modules/pm2/bin/pm2   /usr/local/bin 如果报错 file exits 那么 cd /usr/local/bin rm -rf ./pm2 重新建立软连接 ln -s /software/node/node-v10.7.0-linux-x64/lib/node_modules/pm2/bin/p...

阅读全文>>

热门 启动ftp命令 nginx

时间:2018-7-27   作者:lininn   分类:   热度:2135°    
时间:2018-7-27   分类:    热度:2135  
systemctl restart vsftpd.service #设置开机启动 systemctl enable vsftpd.service # 重启 service vsftpd restart # 查看vsftpd服务的状态 systemctl status vsftpd.service 启动 nginx service nginx restart 安装nginx  https://www.jb51.net/article/107966.htm

阅读全文>>

热门 layui父级操作iframe内的对象

时间:2018-7-19   作者:lininn   分类:   热度:2551°    
时间:2018-7-19   分类:    热度:2551  
function show_layer(){ layer.open({ type: 2, area: [w+'px', h +'px'], fix: false, //不固定 maxmin: true, shadeClose: true, shade:0.4, title: title, content: url, //url 为子布局的url路径 success:function (layero,index) { ...

阅读全文>>

热门 koa静态服务器

时间:2018-7-19   作者:lininn   分类:   热度:2124°    
时间:2018-7-19   分类:    热度:2124  
const Koa = require('koa') const app = new Koa() const serve = require("koa-static"); const port=3001; app.use(serve(__dirname+"/public",{ extensions: ['html']})); app.listen(port); console.log("服务端口"+port); public 目录下作为静态资源根目录

阅读全文>>

热门 layui获取子页面iframe的内容

时间:2018-7-12   作者:lininn   分类:   热度:4715°    
时间:2018-7-12   分类:    热度:4715  
layer.open({ type: 2, title: '编辑音乐', shadeClose: false, shade: 0.8, btnAlign: 'c', area: ['480px', '315px'], btn:['保存修改','取消修改'], yes:function(index,layero){ var form = $(layero).find("iframe")[0].contentWindow.document.getElementById("editForm") }, ...

阅读全文>>

返回顶部    首页    手机版本    后花园   会员注册   
版权所有:覆手为雨    站长: lininn