摘要:
arrow function 不会自带this变量arrow function 没有arguments变量arrow function 有点像c#中的匿名函数https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Function... 阅读全文
摘要:
select ... for update 必须在事物中使用当select ... for update结果集有值时,会阻塞其他事物中的对该结果集中的值的更新操作,不会阻塞其他事物中的对该表的插入操作当select ... for update结果集没有值时,不会阻塞其他事物中的对该表的更新操作,但... 阅读全文
摘要:
在vim的文档中写到:The CTRL-U () is used to remove the range that Vim may insert.其实的作用就是在command模式中删除所有的文本在usr_20.txt中写到CTRL-U removes all text, thus allows y... 阅读全文