1. vue-router 在 Vue 中的生命周期: 这是 vue 生命周期的图: 在路由中分别定义A页面和B页面 A页面: <template> <div> <router-link to="/test2">去B页面</router-link> </div> </template> <scrip ...
分类:
其他好文 时间:
2020-09-09 18:53:09
阅读次数:
44
###本文介绍一个实例,即删除数据库中原有的表格TEST1,新建一个表格TEST2,并在TEST2中插入3行数据。插入数据以后,查询出ID=3的数据,读出,最后将其删除。 结果: 代码: ''' import cx_Oracle as cx #def connect():#连接函数 conn = c ...
分类:
编程语言 时间:
2020-07-30 18:25:09
阅读次数:
106
将本机的脚本在远程主机执行 #ssh 10.0.0.6 bash < /root/test2.sh {test2.sh >hostname -I} 10.0.0.6’s Password: 将远程主机上脚本在本机上运行 #ssh 10.0.0.7 /data/test.sh 10.0.0.7’s P ...
分类:
其他好文 时间:
2020-07-23 23:03:12
阅读次数:
82
在一个模块中的一个函数内定义一个变量,然后将这个模块内的函数(print_global)导入到其他程序(test1.py\test2.py)内并用一个对象(Stu1、Stu2)接收 ''' def print_global(): Stu = [] #Stu是全局变量 return Stu ''' # ...
分类:
编程语言 时间:
2020-07-21 09:43:57
阅读次数:
87
Introduction An Example : FileReader // read the file to console @Test public void test2(){ FileReader fr = null; try { // step 1 : new the file File ...
分类:
编程语言 时间:
2020-07-12 19:06:13
阅读次数:
61
Get-ADUser -filter * -SearchBase 'OU=test1,OU=test2,DC=domain,DC=cn' -Properties SamAccountName,DisplayName,DistinguishedName|export-csv E:\work\AD\di ...
分类:
其他好文 时间:
2020-07-03 12:43:05
阅读次数:
74
1)*将函数参数打包成元组使用,传入参数为位置参数形式 >>> def test1(*arge): ... print(arge) ... >>> test1(1) (1,) >>> test(1,2,3,4) >>> def test2(x,*args): ... print(x) ... pri ...
分类:
编程语言 时间:
2020-07-03 10:55:17
阅读次数:
78
需求,将TEST1,TEST2用户下所有表授权给 test用户,包括往后新建的表。ps:生产库慎用,最好不用; create or replace trigger ddl_triafter create on databasedeclarePRAGMA AUTONOMOUS_TRANSACTION; ...
分类:
其他好文 时间:
2020-06-28 09:40:43
阅读次数:
127
1.类的加载过程 了解 2.类的加载器的作用 3.类的加载器的分类 4.Java类编译、运行的执行的流程 5.使用Classloader加载src目录下的配置文件 @Test public void test2() throws Exception { Properties pros = new P ...
分类:
编程语言 时间:
2020-06-26 22:04:32
阅读次数:
55
当大量数据时,尽量用tuple print 80*'-' print sys.getsizeof(objiect) print dir(sys) print help(sys.getsizeof) tuple 的快速写法: test1 = 1, test2 = 1 test3 = 1,2,3 a = ...
分类:
其他好文 时间:
2020-06-26 22:04:17
阅读次数:
48