EaselJs类间关系首先来看一张EaselJs中提供的class类之间的继承与依赖关系图(来源于网络)先不用知道每个类具体的作用,后续慢慢使用就能了解,在此可以提前了解大体,宏观 以下出现的代码为核心代码,需要参照完整代码的移步至: https://github.com/seablue001/te ...
分类:
Web程序 时间:
2020-04-22 23:04:15
阅读次数:
159
1.上传A平台。2.A平台SFTP方式同步至B平台。3.B平台程序定时扫描同步文件夹,发现有文件就执行,可以用shell+crontab或者程序定时器来做这些操作。4.扫描文件入库的同时记录要执行日志,防止数据损坏引起数据丢失,执行成功的就可以删掉文件了(当然,根据你们的业务场景需要,也可以挪到te ...
分类:
数据库 时间:
2020-04-18 13:56:49
阅读次数:
229
问题: Eclipse导入maven项目时,或者新建一个springboot项目时,pom.xml文件第一行报错,没有错误信息提示,就一个Unknown,但是项目可以正常运行。 如下图: 原因: 因为版本升级了(2.2.6.RELEASE),开发工具不兼容导致。 解决: 在pom.xml 文件中的 ...
分类:
其他好文 时间:
2020-04-15 11:08:36
阅读次数:
72
/** * Notes:导入excel文件 * User: hly * Date: 2020/4/14 17:56 */ function importXlsx() { //引入phpexcel require getcwd() . '/PHPExcel.php'; $file_name = 'te ...
分类:
Web程序 时间:
2020-04-14 18:24:04
阅读次数:
218
题目描述: 自己的提交: class Solution: def entityParser(self, text: str) -> str: text = text.replace(""","\"") text = text.replace("'","\'") text = te ...
分类:
Web程序 时间:
2020-04-12 20:30:37
阅读次数:
64
eg:使用代码 //reducers/todos.js export default function todos(state = [], action) { switch (action.type) { case 'ADD_TODO': return state.concat([action.te ...
分类:
其他好文 时间:
2020-04-12 20:22:25
阅读次数:
75
``` #include #include #include #include #include #include using namespace std; #define ll long long const int N=1e5+5; const int M=1e5+5; const int IN... ...
分类:
其他好文 时间:
2020-04-12 18:33:54
阅读次数:
59
Maven的安装与配置 参考链接:https://blog.csdn.net/a805814077/article/details/100545928 一、安装本地Maven 点此进入maven官网下载 选择左侧Download 点击箭头所指的链接进行下载,本文采用3.5.4进行安装 下载完成后,选 ...
分类:
其他好文 时间:
2020-04-10 19:59:56
阅读次数:
169
1 import json 2 #字典 3 print('dict字典》') 4 dict_test = {'name': 'Zara', 'age': 7, 'class': 'First'} 5 print('初始类型:',type(dict_test)) 6 7 tes=zip(dict_te ...
分类:
编程语言 时间:
2020-04-08 19:18:31
阅读次数:
79
一、概述 shell脚本的交互最常用的方式是使用菜单,通常是echo打印菜单出来。 由于服务别名都写在/etc/hosts中 192.168.155.172 test-1 192.168.155.173 test-2 192.168.155.174 test-3 192.168.155.140 te ...
分类:
系统相关 时间:
2020-04-07 18:37:49
阅读次数:
85