摘要:
一、Jenkins的优点1、传统网站部署流程 一般网站部署的流程 这边是完整流程而不是简化的流程需求分析—原型设计—开发代码—内网部署-提交测试—确认上线—备份数据—外网更新-最终测试,如果发现外网部署的代码有异常,需要及时回滚。 一般是运维来做 1、功能测试 2、上线的时间 3、 jenkins 阅读全文
摘要:
css <link rel="stylesheet" type="text/css" href="/static/plugins/jquery-treetable/css/jquery.treetable.css"> <script type="text/javascript" src="/stat 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <table class="table toggle-arrow-tiny"> <thead> <tr 阅读全文
摘要:
js 水印 function watermark(valueList, tagId='') { let tab = null; let maxWidth = 0; let maxHeight = 0; if (tagId){ tab = document.getElementById(tagId); 阅读全文
摘要:
table 固定表头 <!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <styl 阅读全文
摘要:
js获取url let url = window.location.href; console.log(url) // 返回当前页面的路径和文件名,如:/testdemo/test.html let pathname = window.location.pathname; console.log(p 阅读全文
摘要:
python使用uuid和guid 只需屏蔽128位int import uuid for i in range(100): print(uuid.uuid4().int & (1<<64)-1) 这些或多或少都是随机的,所以碰撞的可能性很小。 也许uid 1的前64位使用起来更安全。 import 阅读全文
摘要:
基本用法 function mHttp() { alert(66) let httpRequest = new XMLHttpRequest();//第一步:创建需要的对象 {#httpRequest.open('POST', 'url', true); //第二步:打开连接/***发送json格式 阅读全文
摘要:
基本操作 #!/usr/bin/env python # encoding: utf-8 """ @author: Irving Shi """ import base64 from pyDes import des, CBC, PAD_PKCS5 Des_Key = "_361Du$Z" Des_ 阅读全文
摘要:
1、wxPython 安装 1.1、Windows 和 macOS 平台安装: pip install -U wxPython 其中 install 是按照软件包,-U 是将指定软件包升级到最新版本。 1.2、Linux 平台下使用 pip 安装有点麻烦,例如在 Ubuntu 16.04 安装,打开 阅读全文