上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 19 下一页
摘要: #!/usr/bin/env python # -*- coding: utf8 -*-import pymysql, sqlparse from app import logger class MysqlDb: def __init__(self, db, connect_timeout=5): 阅读全文
posted @ 2021-12-11 22:26 醒日是归时 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 一,准备工作 准备四台centos服务器,三台用于consul server 高可用集群,一台用于consul client作服务注册及健康检查。架构如下图所示 二,在四台服务器上安装consul 1,安装unzip 工具:yum install -y zip unzip 2,查看centos版本。 阅读全文
posted @ 2021-12-09 02:12 醒日是归时 阅读(433) 评论(0) 推荐(0) 编辑
摘要: golang 按行读取文件 file, err := os.Open("app-2019-06-01.log") if err != nil { log.Fatal(err) } defer file.Close() scanner := bufio.NewScanner(file) for sca 阅读全文
posted @ 2021-12-02 17:58 醒日是归时 阅读(42) 评论(0) 推荐(0) 编辑
摘要: //判断文件是否存在 存在返回 true 不存在返回false func checkFileIsExist(filename string) bool { var exist = true if _, err := os.Stat(filename); os.IsNotExist(err) { ex 阅读全文
posted @ 2021-12-02 17:46 醒日是归时 阅读(457) 评论(0) 推荐(0) 编辑
摘要: // path package main import ( "fmt" "os" "path" "path/filepath" ) func main() { //Path操作 fmt.Println("Path操作 ") fmt.Println(path.Base("http://www.baid 阅读全文
posted @ 2021-12-02 17:40 醒日是归时 阅读(175) 评论(0) 推荐(0) 编辑
摘要: package main import "bytes" import "fmt" import "regexp" func main() { //这个测试一个字符串是否符合一个表达式。 match, _ := regexp.MatchString("p([a-z]+)ch", "peach") fm 阅读全文
posted @ 2021-12-02 14:21 醒日是归时 阅读(209) 评论(0) 推荐(0) 编辑
摘要: #所需模块flask_apscheduler #encodig=utf-8 from flask import Flask, request from flask_apscheduler import APScheduler class Config(object): # 创建配置,用类 # 任务列 阅读全文
posted @ 2021-11-05 20:59 醒日是归时 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 用户和角色表多对多关系 select a.*,GROUP_CONCAT(c.id) as roles from tb_users a,tb_users_roles b,tb_roles c where a.id=b.user_id and b.role_id=c.id and b.role_id i 阅读全文
posted @ 2021-11-05 19:03 醒日是归时 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 其中article.vue和topGroup.vue这两个文件在模块unitTest和wrongBook上出现加载冲突 其中一个文件先加载topGroup.vue文件其中一个文件先加载article.vue文件,将两个文件加载顺序统一一下就可以了 然后再运行下npm run serve 转载于:ht 阅读全文
posted @ 2021-11-03 21:38 醒日是归时 阅读(923) 评论(0) 推荐(0) 编辑
摘要: 输入一个表示文件大小的数字,自适应转换到KB,MB,GB 方法一:bytes自适应转换到KB,MB,GB /// <summary> /// 格式化文件大小的JS方法 /// </summary> /// <param name="filesize">文件的大小,传入的是一个bytes为单位的参数< 阅读全文
posted @ 2021-10-26 10:48 醒日是归时 阅读(1262) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 19 下一页