更改内容提交
1 | git add . |
回退修改前版本
1 | git reset --hard xxxx // xxxx 提交hashid |
修改内容提交
1 | git add . |
使用git tags 查看tag list
1 | git tags |
将tags push至远程
1 | git push --tags |
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
1 | $ hexo server |
More info: Server
1 | $ hexo generate |
More info: Generating
1 | $ hexo deploy |
More info: Deployment
1 | $ mkdir jpy-test-package |
1 | function jpyPackageDemo () { |
1 | $ npm login |
更改源代码
1 | function jpyPackageDemo () { |
更新至npm
npm version
: patch, minor, major(补丁,小改,大改)
1 | npm version minor |
当使用低版本的navicat链接mysql8+版本是 会出现2509的错误,原因是因为mysql8+之后使用的caching_sha2_password验证方式,而之前的mysql版本中加密规则是mysql_native_password。
解决方法就是将验证方式改为以前版本(5.7及以下)使用的验证方式mysql_native_password
windows:
1 | ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; |
Mac:
1 | ALTER user 'root'@'%' IDENTIFIED BY '123456' PASSWORD EXPIRE NEVER; |
‘root’可以改为你自己定义的用户名,’localhost’指的是该用户开放的IP,可以是’localhost’(仅本机访问,相当于127.0.0.1),可以是具体的’...‘(具体某一IP),也可以时’%’(所有IP均可访问)。
password = 你设置的密码
参考:https://blog.csdn.net/qq_35436635/article/details/80126029
1 | function Person(){ |
1 | function Person(){ |
原型链上的属性和方法会被多个实例共享但是构造函数不会
1 | function Person(){ |
1 | //1函数声明法 |
注:可选参数必须配置到参数的最后面
1 | function getInfo(name: string, age?: number): string{ |
1 | // boolean |
1 | //number |
1 | //string |
1 | //array |
name 模板的名称
is声明使用哪个模板,通过data向模板传入信息,只能通过data传入
1 | // index.wxml |
1 | // index.wxml |
1 | //index.wxml |