Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

vue 源码分析事件指令

handler = handler.bind(el);
el.addEventListener(event, handler);
handlers[event] = handler;

在分析vue源码的时候,关于指令v-on:click的源码中有一个绑定事件的。handler = handler.bind(el); 这里这句代码注释掉后,也没有其他变化,不清楚这一行执行的原理。我查了下bind的MDN发现是将事件执行的this指向el,但是不太清楚为什么要这么做?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...