随笔- 310
文章- 1
评论- 0
阅读-
85655
07 2023 档案
python 日志
摘要:#coding:utf-8 import logging import sys import os import datetime from logging import handlers class Logger(object): def __init__(self,name): LOGGING_
阅读全文
linux下普通用户安装MySQL--非root用户安装MySQL
摘要:下载安装包 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
阅读全文
查看修改jiar包配置
摘要:列出jar包的文件清单 jar tf test.jar 将需要修改的文件解压出来 jar xf test.jar BOOT-INF/classes/application.yml 使用修改后的文件替换jar包中对应的文件 jar uf tbds-tdw-20221129.jar BOOT-INF/c
阅读全文
vue 基本语法
摘要:新建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> <
阅读全文
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> <div id="
阅读全文
vue实例
摘要:<!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> <
阅读全文
requests 下载大文件
摘要:# -*- coding: utf-8 -*- from contextlib import closing from requests import get url = 'https://www.test.video/aa' # 但是使用with语句的时候是需要条件的,任何对象,只要正确实现了上下
阅读全文