上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 30 下一页
2023年8月4日
摘要: 概述 // 立刻执行函数 (function($){ // code })(jQuery); 参数说明 形参: $ 实参: jQuery 闭包的作用 避免全局依赖 避免第三方破坏 兼容jQuery操作符'$'和jQuery; /*comment.js*/ ;(function($){ //消息显示 阅读全文
posted @ 2023-08-04 14:47 boye169 阅读(43) 评论(0) 推荐(0) 编辑
2023年8月3日
摘要: function getCookie(name) { var r = document.cookie.match("\\b" + name + "=([^;]*)\\b"); return r ? r[1] : undefined; } console.log(getCookie("username 阅读全文
posted @ 2023-08-03 16:43 boye169 阅读(309) 评论(0) 推荐(0) 编辑
2023年8月2日
摘要: 什么是黑盒监控 我们监控主机的资源用量、容器的运行状态、数据库中间件的运行数据。这些都是支持业务和服务的基础设施,通过白盒能够了解其内部的实际运行状态,通过对监控指标的观察能够预判可能出现的问题,从而对潜在的不确定因素进行优化。 而从完整的监控逻辑的角度,除了大量的应用白盒监控以外,还应该添加适当的 阅读全文
posted @ 2023-08-02 16:49 boye169 阅读(43) 评论(0) 推荐(0) 编辑
2023年7月27日
摘要: #coding:utf-8 import logging import sys import os import datetime from logging import handlers class Logger(object): def __init__(self,name): LOGGING_ 阅读全文
posted @ 2023-07-27 14:47 boye169 阅读(8) 评论(0) 推荐(0) 编辑
2023年7月19日
摘要: 下载安装包 https://dev.mysql.com/downloads/mysql/5.7.html#downloads wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.43-linux-glibc2.12-x86_64.tar 阅读全文
posted @ 2023-07-19 15:56 boye169 阅读(827) 评论(0) 推荐(0) 编辑
2023年7月14日
摘要: 列出jar包的文件清单 jar tf test.jar 将需要修改的文件解压出来 jar xf test.jar BOOT-INF/classes/application.yml 使用修改后的文件替换jar包中对应的文件 jar uf tbds-tdw-20221129.jar BOOT-INF/c 阅读全文
posted @ 2023-07-14 15:21 boye169 阅读(11) 评论(0) 推荐(0) 编辑
2023年7月10日
摘要: 新建Vue对象 <!DOCTYPE html> <html> <head> <title>Vue Demo</title> <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script> </head> <body> < 阅读全文
posted @ 2023-07-10 11:42 boye169 阅读(11) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <title>Vue Demo</title> <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script> </head> <body> <div id=" 阅读全文
posted @ 2023-07-10 11:32 boye169 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Vue 测试实例</title> <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script> < 阅读全文
posted @ 2023-07-10 09:50 boye169 阅读(2) 评论(0) 推荐(0) 编辑
2023年7月6日
摘要: # -*- coding: utf-8 -*- from contextlib import closing from requests import get url = 'https://www.test.video/aa' # 但是使用with语句的时候是需要条件的,任何对象,只要正确实现了上下 阅读全文
posted @ 2023-07-06 17:00 boye169 阅读(31) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 30 下一页