摘要: 一、组件 1、滑动条组件 el-scrollbar,官方文档未找到相关介绍 二、问题: 1、elementUI tree控件过长无法滑动 树行控件外出套个div class为treediv,设置以下style即可实现,解决来源:https://blog.csdn.net/u012138137/art 阅读全文
posted @ 2020-02-08 16:49 南风。 阅读(240) 评论(0) 推荐(0) 编辑
摘要: SpringBoot项目省去了很多配置,学习成本相当低。 spring相关网址:https://spring.io/guides/gs/serving-web-content/ 一、创建springboot项目 选择spring 项目, 选择配置 然后一路 next 项目创建完成会下载pom.xml 阅读全文
posted @ 2020-02-05 16:11 南风。 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1、ref 加在普通的元素上,用this.ref.name 获取到的是dom元素 2、ref 加在子组件上,用this.ref.name 获取到的是组件实例,可以使用组件的所有方法。 refs只会在组件渲染完成之后生效,并且它们不是响应式的。这只意味着一个直接的子组件封装的“逃生舱”——你应该避免在 阅读全文
posted @ 2020-02-01 21:55 南风。 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 一、环境配置 1、安装node ,安装vue-cli3 ,npm安装指定插件 二、正式开发 1、配置文件路径 如何配置文件路径呢?在项目根目录建立一个vue.config.js,输入以下代码即可,具体逻辑看vue-cli文档,大致就是会去查这个文件里的配置,未深究 const path = requ 阅读全文
posted @ 2020-02-01 19:07 南风。 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 1、maven 是jar包管理工具,类似python中的pip(可能比喻的不太对) 2、首先maven会创建一个仓库,然后在配置xml中填写好指定的jar包配置,就会去拉该jar包顺序是 本地 》局域网 》中央仓库 3、maven使用比较简单,百度maven使用即可,本篇只用来记录自己的理解 阅读全文
posted @ 2020-01-16 23:33 南风。 阅读(194) 评论(0) 推荐(0) 编辑
摘要: redis 2.10.6redis-py-cluster 1.3.6 简单实用: startup_nodes = [ {"host": "ip", "port": port}, {"host": "ip", "port": port}] # 连接集群conn = StrictRedisCluster 阅读全文
posted @ 2020-01-03 19:45 南风。 阅读(362) 评论(0) 推荐(0) 编辑
摘要: import json, timeimport telnetlibfrom datetime import datetimeclass Dubbo(telnetlib.Telnet): prompt = 'dubbo>' coding = 'utf-8' def __init__(self, hos 阅读全文
posted @ 2020-01-03 19:43 南风。 阅读(602) 评论(0) 推荐(0) 编辑
摘要: import axios from 'axios'import QS from 'qs'// import statuscode from './status_code'// 创建一个axios实例let server = axios.create({ baseURL: 'http://127.0. 阅读全文
posted @ 2019-12-27 17:27 南风。 阅读(130) 评论(0) 推荐(0) 编辑
摘要: import logging, os, time, datetimepath = os.path.dirname(os.path.abspath(os.path.dirname(__file__))) + '\log/'class Logger: def __init__(self, path=pa 阅读全文
posted @ 2019-12-27 11:02 南风。 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 1、https://964279924.ctfile.com/fs/1445568-239446865 2、重新安装 .Net framework 更高的版本:https://support.microsoft.com/en-us/help/3151800/the-net-framework-4-6 阅读全文
posted @ 2019-12-24 19:07 南风。 阅读(1266) 评论(0) 推荐(0) 编辑