05 2021 档案
摘要:/// 1, 父组件 > 子组件 子组件 @input get {} set {} 的意义是希望子组件收到参数进行一些处理后,再展示; 2,子组件监听父组件值变化 // 子组件实现ngOnchanges实现监听父组件传值变化 @Input() major: number; @Input() mino
阅读全文
摘要:... 参考 https://juejin.cn/post/6844904165181751304 https://www.jianshu.com/p/52500abbed5c?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&
阅读全文
摘要:... html <d-button (btnClick)="HuGet()">huzh Get</d-button> <h5 class="text-muted">Standard: Single Select</h5> <div class="row"> <div class="col-md-5
阅读全文
摘要:... for 循环之前需要初始化被赋值的对象,否则每次被赋值的是同一个对象,而且是这个对象最后一次被赋值的情况 参考 https://blog.csdn.net/qq_38758765/article/details/115749097 HuDerr(): void{ this.data3.dat
阅读全文
摘要:... 占位 参考 https://zhiqianghe.blog.csdn.net/article/details/108440342 import paramiko, sys, time import multiprocessing as mp from multiprocessing impo
阅读全文
摘要:...占位 没有start 方法,create 方法来实现开机 conn = libvirt.open("qemu:///system") domain=conn.lookupByName("generic") domain.create() time.sleep(180) ____________
阅读全文
摘要:...占位 1, 例子理解 // from https://blog.csdn.net/u011957758/article/details/82948750 package main import ( "context" "fmt" "math/rand" "time" ) /* 1, main
阅读全文