Git分支操作

查看本地分支git branch -t
合并本地两个分支git merge branchOne  branchTwo
切换分支:git checkout  branchName

将本地指定分支推送到远程指定仓库指定分支: git push 远程仓库地址  本地指定分支:远程指定分支[……]

微信小程序base64编码解码以及utf-8解码

JS格式化时间(支持小程序,兼容IOS)

使用WebDriverAgent中遇到的问题

webpack 3.8 使用 extract-text-webpack-plugin 3.0 抽取css失败:You may need an appropriate loader to handle this file type.

解决方法:

将webpack-build.config.js 配置改为:

问题就解决了。[……]