import pymysql,xlwt def export_excel(table_name): host,user,passwd,db='192.168.1.152','root','myjcyf','us_sys' coon=pymysql.connect(host=host,user=use ...
分类:
其他好文 时间:
2021-07-01 17:27:29
阅读次数:
0
#!/usr/bin/python # -*- coding: UTF-8 -*- # @auther gaocan 809900210@qq.com import sys import os import re import codecs ''' Codec: See Python`s Stand ...
分类:
其他好文 时间:
2021-07-01 17:19:46
阅读次数:
0
在vue项目中,当再次点击当前看路由时,会在控制台报如下警告: Avoided redundant navigation to current location:"/xxx/xxx" 解决方法: 在router.js中添加如下代码 import Vue from 'vue' import Route ...
分类:
其他好文 时间:
2021-07-01 17:14:17
阅读次数:
0
import lombok.*; /** * @author: Small sunshine * @Description: * @date: 2021/6/30 8:05 下午 */ public class SortTree { public static void main(String[] ...
分类:
其他好文 时间:
2021-07-01 17:04:50
阅读次数:
0
setting: from fake_useragent import UserAgent BOT_NAME = 'wxapp' SPIDER_MODULES = ['wxapp.spiders'] NEWSPIDER_MODULE = 'wxapp.spiders' ROBOTSTXT_OBEY ...
分类:
微信 时间:
2021-07-01 17:00:41
阅读次数:
0
一、依赖倒转原则介绍 二、依赖倒转原则引入 1.方式一(传统方式) public class DependencyInversion { public static void main(String[] args) { Person person = new Person(); person.rec ...
分类:
其他好文 时间:
2021-07-01 16:40:10
阅读次数:
0
一、单一职责原则介绍 二、单一职责原则引入 1.方式一(违反了单一职责原则) 解析:摩托车、汽车是公路上运行的,但飞机并不是在公路上运行的。 public class SingleResponsibility1 { public static void main(String[] args) { / ...
分类:
其他好文 时间:
2021-07-01 16:31:05
阅读次数:
0
使用vue-amap 一套专门用于vue的高德地图插件 1.安装 npm install vue-amap -S 2.在main.js中引入 import AMap from 'vue-amap' Vue.use(AMap) // 初始化地图 AMap.initAMapApiLoader({ key ...
分类:
其他好文 时间:
2021-07-01 16:30:44
阅读次数:
0
#region 毫秒延时 界面不会卡死 public static void Delay(int mm) { DateTime current = DateTime.Now; while (current.AddMilliseconds(mm) > DateTime.Now) { Applicati ...
分类:
移动开发 时间:
2021-07-01 16:29:40
阅读次数:
0
由于继承自UBlueprintFunctionLibrary的子类中声明的函数基本上是static, 在类内部调用外部定义的委托编译时会报错,按如下方式进行操作则可正常使用。 *.h 1 UCLASS() 2 class UE4_OSS_LIBRARY_API UOSSApiUtilty : pub ...
分类:
其他好文 时间:
2021-07-01 16:24:26
阅读次数:
0