摘要:
1.react 必须引用 import React,{component} from "react" 2.react-redux 的 reducers 必须返回 新的state 否则,视图不会自动的更新 阅读全文
摘要:
前端路由指的是单页面的应用可以使用浏览器的后退前进按钮操作,但是却不会向服务器端重新请求页面,表现为浏览器地址栏会变化,但页面不重新请求。 有两种实现方式1.通过监听hash的变化,使用location.hash=xx来添加浏览器记录,location.replace,location.hash每被 阅读全文
摘要:
1.es6过一遍 http://www.cnblogs.com/lguow/articles/9232577.html 阅读全文
摘要:
select video.videoid ,hong.name from video , hong where hong.name="小鸭" and video.hongid=hong.hongid select a.videoid ,b.name from video a , hong b whe 阅读全文
摘要:
vue v-model 在输入框中的双向数据绑定,其实是一个语法糖。 在input中 其实是<input @input="input" :value="value"> input(event){ this.value = event.target.value; } 输入框中修改了,会映射到value 阅读全文
摘要:
form novalidator属性可以屏蔽input原始的校验。 vue 无原生支持的类似于angular的 form.name.$dirty,form.name.$invalid属性,标明输入的状态, vue的校验库https://github.com/monterail/vuelidate h 阅读全文
摘要:
动画方面的库: 1.Velocity.js: [英] [viˈlɔsiti] 快速,http://www.mrfront.com/docs/velocity.js/index.html 是一款比jquery.animate更轻量级的库,更高效的库。配合jquery使用时,和jquery.animat 阅读全文
摘要:
vue 中有一个transition 系统组件可以实现动画,也可以实现页面间的切换。 <transition>内容的改变(样式改变,显示,移除)会以动画的形式展现</transition> 如果transition内是 router-view 则可以实现页面切换动画。 transition 动画的实 阅读全文
摘要:
浏览器上支持:输入框不在页面可见区域,但焦点在输入框内,仍然可以输入,输入框必须是visibale的。 在vivox6plus自带浏览器上,这种场景输入一个字后后,输入框就会失焦,(输入框必须在页面可见范围内才不会失焦),将输入框设置为透明,光标设置为透明 可以解决,但是这个浏览器上存在一个无法屏蔽 阅读全文
摘要:
https://www.cnblogs.com/2050/p/3877280.html 网页上有 meta name=viewport 标签,它的宽度表示屏幕能显示的css px 宽度,使用document.documentElement.clientWidth可以获取 ,通常将它设置成device 阅读全文