摘要:
1. 子组件 2. 父组件 3 vuex 阅读全文
摘要:
package main import ( "fmt" "unsafe" ) func main() { t := &T{"dd", 11} t1 := reflect.ValueOf(t) t2 := t1.Elem() t11 := reflect.TypeOf(t) t22 := t11.Elem().Field(1) fmt.Println(t22) t2.Field(0).SetStri 阅读全文
摘要:
operator 安装 go get github.com/operator-framework/operator-sdk export GOPROXY="https://goproxy.io" cd $GOPATH/src/github.com/operator-framework/operato 阅读全文
摘要:
2. lua_package_path 阅读全文
摘要:
VRRP的广播地址是 224.0.0.18 阅读全文
摘要:
1. 服务步骤 pod -> service -> DestinationRule(目标规则) -> VirtualService(路由规则) 阅读全文
摘要:
1. 下载 wget https://releases.hashicorp.com/terraform/0.11.13/terraform_0.11.13_linux_amd64.zip 2. 创建个测试的tf 3. 运行 阅读全文
摘要:
1. 静态调用非静态 $ cat Helloworld.java public class Helloworld { public void Puppy(String name) { System.out.println("dog name is : " + name); } public static void main(String[] args... 阅读全文
摘要:
1. 点和冒号的区别是, 一个是方法调用, 一个面向对象,里面有个self , 修改了原function, 不会影响到复制对象。 local _M = {} function _M.one(a,b) return a + b end _M.one(1,2) # 结果是3 local w = _M ; 阅读全文