码迷,mamicode.com
首页 >  
搜索关键字:console page status    ( 39775个结果
基于Docker搭建 Php-fpm + Nginx 环境
1、拉取nginx镜像,以及php-fpm镜像 docker pull nginx:1.16.0 docker pull php:5.6.40-fpm 2、分别创建nginx 容器php-fpm 容器 # 这里最后吧 /etc/nginx/conf.d 目录和存放静态资源文件的目录挂载到宿主机上来 ...
分类:Web程序   时间:2021-07-27 17:31:51    阅读次数:0
uni-app滚动视图容器(scroll-view)之监听上拉事件
实现 现在要实现一个功能。一个列表,上加载更多数据。页面如下。 因此,可滚动视图区域。滚动区域页面展示思路如下: <scroll-view scroll-y="true" @scrolltolower="scroll" style="height: 100vh;"> <!-- uni-list列表 ...
分类:移动开发   时间:2021-07-21 17:41:36    阅读次数:0
变量未定义
变量未定义时, 其被赋为undefined let aaa; console.log("undefined ...",undefined); console.log("aaa ...", aaa); if(aaa==undefined){ console.log("aaa == undefined" ...
分类:其他好文   时间:2021-07-21 17:40:09    阅读次数:0
sshd服务(使用ssh协议远程开启其他主机shell的服务)
###一.sshd简介 sshd(secure shell)服务使用ssh协议远程开启其他主机shell的服务。首先需要打开sshd 服务 ###二.sshd服务状态调整 systemctl status sshd 查看服务状态 systemctl start sshd 打开服务 systemctl ...
分类:系统相关   时间:2021-07-21 17:39:31    阅读次数:0
centos7防火墙配置
2021-07-20 1.查看firewall服务状态 systemctl status firewalld 2.查看firewall状态 firewall-cmd --state 该命令需要在超级用户root身份下使用 3.重启,关闭,开启firewall服务 # 重启 systemctl res ...
分类:其他好文   时间:2021-07-21 17:31:40    阅读次数:0
Springboot-微服务-微服务组件之服务管理-Zuul网关
#Springboot-微服务-微服务组件之服务管理-Zuul网关 Zuul.简介 官网:https://github.com/Netflix/zuul Zuul加入后的架构 不管是来自于客户端(PC或移动端)的请求,还是服务内部调用。一切对服务的请求都会经过Zuul这个网关,然后再由网关来实现 鉴 ...
分类:编程语言   时间:2021-07-19 16:48:33    阅读次数:0
centos8 yum源
cat CentOS-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to p ...
分类:其他好文   时间:2021-07-19 16:46:42    阅读次数:0
[HCTF 2018]WarmUp
<?php highlight_file(__FILE__); class emmm { public static function checkFile(&$page) { $whitelist = ["source"=>"source.php","hint"=>"hint.php"]; if ( ...
分类:其他好文   时间:2021-07-16 17:40:01    阅读次数:0
viewPager2.setOffscreenPageLimit 预加载数量 进行fragment的懒加载
1、一般我们预加载的时候,都会指定显示的数量,比如viewPager2.setOffscreenPageLimit(1); 如果设置 setOffscreenPageLimit(1), 会如何处理呢? 经过测试,会加载第一页与第二页,如果切换到第二页,会加载第三页,但不会执行onResume方法,也 ...
分类:其他好文   时间:2021-07-12 18:14:40    阅读次数:0
Django缓存
Django缓存 介绍 ? ? 缓存是将一些常用的数据保存在内存或者memcache中,在设置好的时间内,如果有请求访问这些数据,则不会再去操作数据库、执行逻辑、渲染等操作,而是直接从内存或者memcache的缓存中取取出数据,返回给用户 ? 在动态网站中,用户向服务端发起请求,服务器都会去数据库中 ...
分类:其他好文   时间:2021-07-12 18:04:59    阅读次数:0
39775条   1 2 3 4 ... 3978 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!