找了很久没找到
应用场景是这样的
//在请求回调的函数里 省略了请求代码
function callback(data){
func func_a(){
//use data do something
}
document.addEventListener('someone',func_a);
}
大概就是这样的场景
要把data参数传进去大概有
方法1.匿名函数 缺点就是不能remove
方法2.bind 缺点未知,但是看overstack上说也有问题
有没有完美点的方案啊?