上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 30 下一页
摘要: @EnableAspectJAutoProxy文件:@Import(AspectJAutoProxyRegistrar.class) 所以AspectJAutoProxyRegistrar起关键作用,看一下它的实现: // 继承了 ImportBeanDefinitionRegistrar 接口,该 阅读全文
posted @ 2019-11-07 15:00 qianbuhan 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 在配置类中使用 @EnableAspectJAutoProxy 才能使Aspect生效,在这篇文章中详细分析该注解的作用原理。 切面类使用 @Aspect 声明,同时需要@Component注册为组件(或用其他方式,Aspect不会自动注册为Spring组件) 切面类有以下主要功能(用法详见代码部分 阅读全文
posted @ 2019-11-07 11:13 qianbuhan 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 1. 各版本java特性 [参考:https://blog.csdn.net/qq934235475/article/details/82220076] jdk1.0 - 1996-01-23 Oakjdk1.1 - 1997-02-19 JDBC(Java DataBase Connectivit 阅读全文
posted @ 2019-09-06 11:26 qianbuhan 阅读(72) 评论(0) 推荐(0) 编辑
摘要: el 阅读全文
posted @ 2019-09-06 10:44 qianbuhan 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1. silent 阅读全文
posted @ 2019-09-06 10:34 qianbuhan 阅读(35) 评论(0) 推荐(0) 编辑
摘要: data - Object | Function,组件只能用Function Vue 实例的数据对象。 Vue 将会递归将 data 的属性转换为 getter/setter,从而让 data 的属性能够响应数据变化。 对象必须是纯粹的对象 (含有零个或多个的 key/value 对):浏览器 AP 阅读全文
posted @ 2019-09-06 09:33 qianbuhan 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 所有的生命周期钩子自动绑定 this 上下文到实例中; 不能使用箭头函数来定义一个生命周期方法,因为箭头函数绑定的是父上下文。 11个生命周期钩子 beforeCreate:function(){ console.log('1-beforeCreate 初始化之前。取数据'); // 在实例初始化之 阅读全文
posted @ 2019-09-06 09:21 qianbuhan 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 1. Vue.directive 自定义指令 - ({string} id, {Function | Object} [definition]) Vue.directive("jxch", { // el: 标签; binding: 对象 bind: function (el, binding, v 阅读全文
posted @ 2019-09-05 20:03 qianbuhan 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 插值:{{}}v-if: 判断是否加载,可以减轻服务器的压力,在需要时加载。v-show:调整css dispaly属性,可以使客户端操作更加流畅。v-for:在要循环的标签上使用。比如在ol标签下的li标签上使用。v-on:绑定事件。如v-on:click、v-on:keyup.enter。ent 阅读全文
posted @ 2019-09-05 19:39 qianbuhan 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 开发环境 npm install --global vue-cli npm install -g webpack npm install -g cnpm --registry=http://registry.npm.taobao.org cnpm i node-sass -D cnpm i sass 阅读全文
posted @ 2019-09-05 19:07 qianbuhan 阅读(83) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 30 下一页