前端模版 要点说明(仅是自己在调试中总结的个人理解,非官方,认知有限) v-model是用来绑定数据的,和数据结构中的字段名保持一致,否则无法取得数据 prop和和v-model的字段名相同,由于这里是动态生成input标签,所以prop属性也应该是动态的,因为rules是根据prop来校验的,所以 ...
分类:
其他好文 时间:
2020-06-14 18:37:56
阅读次数:
189
@SentinelResource 注解的使用方法 官网文档:Sentinel 注解支持 对应 Spring 中的切面:SentinelResourceAspect /** * Aspect for methods with {@link SentinelResource} annotation. ...
分类:
Web程序 时间:
2020-06-14 14:40:22
阅读次数:
90
1. methods: mapActions('user', { login (dispatch) { dispatch('loginAction', this) } }) 2. methods: mapActions('user', ['loginAction']) ...
分类:
其他好文 时间:
2020-06-14 10:30:41
阅读次数:
230
1、vue中得监听属性:watch watch就是用来监听数据变化得,当数据模型(data中得数据)发生改变时,watch就会被触发 2、watch提供得是响应数据得变化,并且是自动进行响应得 数据变化得时候执行异步或开销较大得一些操作,会常使用得是watch来实现得 <template> <div ...
分类:
其他好文 时间:
2020-06-14 01:16:29
阅读次数:
80
watch和created有什么差别? 答:created只在new Vue()对象创建完成后触发一次 watch中的函数,只要变量变化,就会触发。反复变化多次,就会自动触发多次。 什么时候用methods,computed,created,watch 答:所有事件处理函数和根据主要自定义的函数,都 ...
分类:
其他好文 时间:
2020-06-13 22:55:16
阅读次数:
129
This blog is meant to give a very high level and generalized introduction into the workflow behind creating games. It is not meant to be a strict guid ...
分类:
其他好文 时间:
2020-06-13 21:29:05
阅读次数:
79
直接代码: package cn.itcast.crawler.test;import org.apache.http.HttpEntity;import org.apache.http.client.methods.CloseableHttpResponse;import org.apache.h ...
分类:
Web程序 时间:
2020-06-13 15:48:51
阅读次数:
95
五、mutation的提交风格 这个是commit的另一种写法,高档货 两种写法是有区别的,就是传递的参数不一样的表现 this.$sorte.commit('incrementCour',palyload) 拿到的是一个原模原样的palyload this.$store.commit({ type ...
分类:
其他好文 时间:
2020-06-11 19:32:30
阅读次数:
36
前后端分离项目,优先使用Nginx同域部署。 不能同域部署的势必会跨域,此时则需要用Nginx给后端项目做反向代理,做还有额外配置: location / { # 1.针对复杂请求,的前导OPTIONS请求,采取一律放行政策,Nginx拦截后直接返回200,不打到后端接口,避免后端认证等问题(因为O ...
分类:
其他好文 时间:
2020-06-11 13:49:23
阅读次数:
68
1. Optimization Methods 1.1 - Gradient Descent 1.2 - Mini-Batch Gradient descent 1.3 - Momentum 1.4 - Adam 2. Model with different optimization algori ...
分类:
其他好文 时间:
2020-06-11 13:40:36
阅读次数:
50