# coding:utf-8 import hashlib import datetime import lxml import pymysql import requests from lxml import etree import sys reload(sys) sys.setdefaulte ...
分类:
其他好文 时间:
2020-04-24 21:40:14
阅读次数:
451
haproxy的配置文件大概可以分两段;第一段配置上global配置段即全局配置段,主要是针对haproxy的进程和安全相关的;第二段是proxies代理配置段,主要是配置haproxy前端监听那个地址那个端口以及后端server的名称、地址、端口,以及server相关属性等配置;而proxies... ...
分类:
其他好文 时间:
2020-04-24 09:16:26
阅读次数:
84
Layui hint: The ID option was not found in the table instance 出现这句,在审查了关键位置都没出错的情况下,百思不得其解,仔细看了下,我重载时用了 window.frames[1].layui.table.reload('table_id' ...
分类:
其他好文 时间:
2020-04-20 10:31:40
阅读次数:
637
下载网址:http://nginx.org/en/download.html 直接下载Stable version版本就好 下载之后解压 我是解压到E盘了 nginx 常用命令: 在nginx文件夹下使用 nginx -t 检查配置文件是否配置成功 start nginx 启动运行nginx服务 n ...
分类:
其他好文 时间:
2020-04-17 16:02:24
阅读次数:
68
import socket import sys import os,time reload(sys) sys.setdefaultencoding('utf8') def send_cmd(command): try: print "开始连接服务端..." client = socket.sock ...
分类:
其他好文 时间:
2020-04-16 18:06:53
阅读次数:
112
Nginx: 1、Nginx启动: /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf nginx安装目录地址 -c nginx配置文件地址 2、Nginx重启: nginx -s reload 3、Nginx配置文件检测: ...
分类:
其他好文 时间:
2020-04-14 17:14:57
阅读次数:
54
Vue实现页面刷新 普通方法: location.reload(); this.$rotuer.go(0); 这两个方法会强制刷新页面,出现短暂的空白闪烁 使用 provide和inject 这对选项需要一起使用,以允许一个祖先组件向其所有子孙后代注入一个依赖,不论组件层次有多深,并在起上下游关系成 ...
分类:
其他好文 时间:
2020-04-14 16:36:15
阅读次数:
60
业务场景:在管理后台,在执行完,增,删,改,操作的时候。我们需要刷新一下页面,重载数据。在JQ中我们会用到location.reload()方法,刷新页面;在vue中,这里需要用到一个 provide / inject 这对用例。(其他方法:this.$router.go(0),会强制刷新,出现空白 ...
分类:
其他好文 时间:
2020-04-13 00:37:30
阅读次数:
446
import sys import pymssql reload(sys) sys.setdefaultencoding("utf-8") #数据库连接配置 config_dict={ 'user':'sa', 'password':'', 'host':'127.0.0.1', 'database ...
分类:
数据库 时间:
2020-04-11 12:53:44
阅读次数:
255
MVVM Model Model 是用来表示我们会对其进行处理的实际数据,而且其中不应该包含逻辑。 View View 是直接与用户交互的,也不应该包含逻辑,只需要告诉它如何显示,并且在触发事件之后进行转发。 ViewModel ViewModel 会跟踪 View 的事件,和Model 层传给它的 ...
分类:
其他好文 时间:
2020-04-11 00:27:58
阅读次数:
57