一、Message定义Message类官方介绍如下:/** * Defines a message containing a description and arbitrary data object that can be * sent to a {@link Handler}. This obj ...
分类:
移动开发 时间:
2021-02-06 11:45:48
阅读次数:
0
rule:{ name:"", age:"" } watch:{ rule:{ handler:function(){ //do something }, deep:true } } deep设置为true的意思是修改rule中任何一个属性,都会执行handler这个方法,但是这样消耗比较大,对象嵌 ...
分类:
其他好文 时间:
2021-02-03 10:56:49
阅读次数:
0
探针是由 kubelet 对容器执行的定期诊断。要执行诊断,kubelet 调用由容器实现的 Handler。有三种类型的处理程序: Ø ExecAction:在容器内执行指定命令。如果命令退出时返回码为 0 则认为诊断成功。 Ø TCPSocketAction:对指定端口上的容器的 IP 地址进行 ...
分类:
其他好文 时间:
2021-02-03 10:49:30
阅读次数:
0
logging是一个python的自带模块,用来记录日志信息,大白话就是把你print()的东西输出到控制台console或者文件file 这是一个非常重要的模块,在我们眼中仅次于os和sys,下面将我自己封装的logging代码贴出来 import logging def logger_handl ...
分类:
编程语言 时间:
2021-01-29 12:09:22
阅读次数:
0
继上一篇的授权码授权模式,这篇会继续实现混合授权模式 首先修改Config.cs 添加Client new Client { ClientId = "hybrid_client", ClientName = "hybrid Auth", ClientSecrets = { new Secret("h ...
分类:
其他好文 时间:
2021-01-29 11:49:14
阅读次数:
0
1、依赖 <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>3.4.0</version> </dependency> 2、JWT工具类生成 import com.auth0.jw ...
分类:
编程语言 时间:
2021-01-27 13:14:05
阅读次数:
0
class EventBus { constructor(){} handlerBus={} //注册 $on(eventName,handler){ if(!this.handlerBus.hasOwnProperty(eventName)){ this.handlerBus[eventName] ...
分类:
Web程序 时间:
2021-01-22 12:01:16
阅读次数:
0
Sentinel上下文创建及执行,入口示例代码: public static void fun() { Entry entry = null; try { entry = SphU.entry(SOURCE_KEY); } catch (BlockException e1) { } finally ...
分类:
其他好文 时间:
2021-01-20 11:51:13
阅读次数:
0
data: { datas: { a: 77, b: 86 } } 使用deep:true深层次监听 'datas':{ handler:function(newVal){ console.log(this.datas); }, deep:true } 监听某一个具体的属性 'datas.a':{ ...
分类:
其他好文 时间:
2021-01-18 10:45:24
阅读次数:
0
Spring MVC 注解开发 所需pom依赖: <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.2.0.RELEASE</version> < ...
分类:
编程语言 时间:
2021-01-14 11:33:10
阅读次数:
0