const getDateTime = (type) => { // 获取当前日期 let timestamp = Date.parse(new Date()); let date = new Date(timestamp); if (type == 'tomorrow') { // 明天 date ...
分类:
Web程序 时间:
2020-06-12 19:58:56
阅读次数:
385
asy --help Asymptote version 2.49 [(C) 2004 Andy Hammerlindl, John C. Bowman, Tom Prince] http://asymptote.sourceforge.net/ Usage: asy [options] [file ...
分类:
其他好文 时间:
2020-06-12 14:52:48
阅读次数:
83
name -aLinux localhost.localdomain 4.20.0-1.nk.3.x86_64 #1 SMP Fri Jan 25 08:58:11 CST 2019 x86_64 x86_64 x86_64 GNU/Linux dotnet --info.NET Core SDK ...
分类:
Web程序 时间:
2020-06-12 14:11:55
阅读次数:
94
1 #include <opencv2/opencv.hpp> 2 3 using namespace std; 4 using namespace cv; 5 6 /**将Mat类型的数据转换为uchar类型*/ 7 uchar* matToUchar(Mat img) 8 { 9 int img ...
分类:
其他好文 时间:
2020-06-12 12:52:53
阅读次数:
74
登录功能概述 token原理分析 登录页面布局 代码编写之前先创建功能开发分支 git status //查看当前工作区是否干净 git checkout -b login //创建新的分支login git branch //查看当前分支是哪一个 git add . git commit -m " ...
高级算子 mapPartitionWithIndex:对RDD中每个分区(有下标)进行操作,通过自己定义的一个函数来处理 def mapPartitionsWithIndex[U](f: (Int, Iterator[T]) ? Iterator[U]) f 是函数参数,接收两个参数 Int:分区号 ...
分类:
数据库 时间:
2020-06-12 00:32:18
阅读次数:
96
@Override@Transactional(propagation = Propagation.REQUIRED,isolation= Isolation.REPEATABLE_READ)public User1 hsq_test_read(Integer id) { User1 user1 = ...
分类:
数据库 时间:
2020-06-11 21:55:52
阅读次数:
127
由于实验室需要,今天重新安装了一下VC6,结果在安装VC6LineNumberAddin是出现了一些问题。 安装这个插件的目的是可以在编写代码时候,自动显示行号。。。。。唉,用习惯了VS2010,对自动显示行号早就习以为常了。。。。。 最让人讨厌的就是Unable to register this ...
分类:
其他好文 时间:
2020-06-11 20:03:42
阅读次数:
86
jenkins build 报错: [hello-world-freestyle] $ /bin/sh -xe /root/softs/apache-tomcat-9.0.35/temp/jenkins5323864766359302328.sh + mvn clean package /root/ ...
分类:
其他好文 时间:
2020-06-11 16:21:50
阅读次数:
160
首先创建一个Model类来存放数据, public class MailModel { [Required(ErrorMessage = "Please enter the receiver")] public string To { get; set; } public string Subjec ...
分类:
Web程序 时间:
2020-06-11 14:57:48
阅读次数:
73