摘要:
单元测试 react 17 使用 @wojtekmaj/enzyme-adapter-react-17 对方法进行 wrap 点击查看代码 'should call method once with argument': function () { var object = { method: fu 阅读全文
摘要:
三种方法用于指定函数内部的 this 指向 call var rascal = 456; var keith = { rascal: 123 }; function a() { console.log(this.rascal); } a.call(this); //456 a.call(keith) 阅读全文