Live2D
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页
摘要: 上传项目到服务器 安装Nginx(反向代理服务器),配置文件 https://www.cnblogs.com/xiaonangua/p/9176137.html 安装supervisor https://www.cnblogs.com/xiaonangua/p/9176157.html 阅读全文
posted @ 2018-06-13 09:37 webmtjj 阅读(158) 评论(0) 推荐(0)
摘要: 负责在启动自身时启动管理的子进程,响应客户端的命令,重启崩溃或退出的子进程,记录子进程stdout和stderr输出,生成和处理子进程生命周期中的事件。 安装yum install supervisor 设置开机启动systemctl enable supervisord.service 配置文件( 阅读全文
posted @ 2018-06-13 09:34 webmtjj 阅读(984) 评论(0) 推荐(0)
摘要: 添加Nginx存储库 sudo yum install epel-release 安装Nginx sudo yum install nginx 启动Nginx sudo systemctl start nginx 如果正在运行防火墙,运行以下命令以允许HTTP和HTTPS通信 在系统启动时启用Ngi 阅读全文
posted @ 2018-06-13 09:29 webmtjj 阅读(2159) 评论(0) 推荐(0)
摘要: 引入文件 <link href="~/Scripts/webuploader-0.1.5/webuploader.css" rel="stylesheet" /> <script src="~/Scripts/webuploader-0.1.5/webuploader.js"></script> h 阅读全文
posted @ 2018-06-12 16:35 webmtjj 阅读(1113) 评论(0) 推荐(0)
摘要: 该文章为原创文章,转载请注明出处 用户-角色-权限 用户-角色-用户角色-权限-角色权限 用户-权限 用户-权限-用户权限 菜单权限控制 去重使用方法参考 https://www.cnblogs.com/xiaonangua/p/9173650.html 阅读全文
posted @ 2018-06-12 16:23 webmtjj 阅读(150) 评论(0) 推荐(0)
摘要: 添加类并继承`IEqualityComparer`,重写方法 public class DistinctComparer : IEqualityComparer<ActionInfo> { public bool Equals(ActionInfo x, ActionInfo y) { return 阅读全文
posted @ 2018-06-12 16:18 webmtjj 阅读(156) 评论(0) 推荐(0)
摘要: 代码示例网址:http://pandao.github.io/editor.md/examples/index.html 引入文件 <link rel="stylesheet" href="/editor.md-master/css/editormd.css" /> <script src="/ed 阅读全文
posted @ 2018-06-12 16:13 webmtjj 阅读(415) 评论(0) 推荐(0)
摘要: var list = from item in (from s in _sysBll.GetList(s => s.ParamID == "TraSchType" && s.ParamCode != null) join t in data on s.ParamCode equals t.TraSchType in... 阅读全文
posted @ 2018-06-12 15:57 webmtjj 阅读(641) 评论(0) 推荐(0)
摘要: group by var list = from s in _sysBll.GetList(s => s.ParamID == "TraSchType" && s.ParamCode != null) join t in data on s.ParamCode equals t.TraSchType 阅读全文
posted @ 2018-06-12 15:55 webmtjj 阅读(262) 评论(0) 推荐(0)
摘要: 安装MySQL cd /usr/local mkdir mysql tar -xvf MySQL-5.6.22-1.el6.i686.rpm-bundle.tar -C /usr/local/mysql 安装服务器端:rpm -ivh MySQL-server-5.6.22-1.el6.i686.r 阅读全文
posted @ 2018-06-12 15:52 webmtjj 阅读(92) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页