typescript学习

出差杭州一周,36度的大杭州真是热啊,这两天下雨一下子就降了12度,逛了西湖,烟雨蒙蒙,忍不住就哼唱一句“西湖的美,我的泪….”

»
Author's profile picture Summer on typescript

简述ES6/ES5原型链与继承

ES6之前,JavaScript没有类的概念,继承基于原型链。每个对象都有一个指向另一个对象或内部的[[prototype]]属性。

»
Author's profile picture Summer on prototype

VueJS使用总结

根据平时开发工作,对vue的部分知识点做一个小总结。

»
Author's profile picture Summer on vue

认识HTTP缓存机制

在开发微信公众号页面的时候,因为使用的是volecity模板开发,在前端设置禁止缓存的情况下,完全没起到作用。如何权衡该如何使用http cache?所以研究了下http缓存机制。

»
Author's profile picture Summer on http

ES6知识点-Set、Map、WeakSet、WeakMap

除了Array之外的其他集合使用方法。

»
Author's profile picture Summer on es6

flexbox布局

使用react-native开发,必须先学习flexbox布局。

»
Author's profile picture Summer on flexbox

animation动画

css动画是一个很有意思的问题,使用非常简单。使用流畅的css动画,可以提升用户体验。

»
Author's profile picture Summer on animation

使用react-native开发expo应用

react native官方现在推荐的项目构建方式是create-react-native-app,并且建议使用expo这个app来查看效果。

»
Author's profile picture Summer on react-native

ReactJs学习

ReactJs是一个JavaScript库,支持前端web和在服务端运行,用于构建用户界面和web应用程序。

»
Author's profile picture Summer on ReactJs

正则表达式(regEx)

正则表达式是在字符串中执行搜索和替换的强大方法。可用于RegExptestexec方法,以及Stringmatchreplacesearchsplit方法。

»
Author's profile picture Summer on regex

webpack4的使用小结

webpack4已经发布了。打包性能大幅度提升,改善之前的复杂配置和默认设置。

»
Author's profile picture Summer on webpack4

es6基础知识点2

上篇总结了let、const、箭头函数、参数,现在继续总结。

»
Author's profile picture Summer on es6