在页面编辑器codemirror 遇到的蠢问题

1、this问题 

面试题上最常见的题目,问的时候也能答出来,到遇到的时候,竟然中了这个坑

CodeMirror.defineExtension('addMsgVar', function (val) {
  this.replaceSelection(val)
})

这里的replaceSelection方法是全局的,但我一开始改写用的是箭头函数,获取this,是undefined。。。。

上一篇:sublime text 3安装 package control 插件的方法


下一篇:CodeMirror 1-9序号内容和序号不对齐问题修复