es6里面,class的定义会导致涵数遍历不出来,然后proxy没用了
Daley opened this issue · 3 comments
Daley commented
class ChatRemote {
test() {
}
aa = "1";
}
var chat = new ChatRemote();
for(var n in chat){
console.log("ff",n);
}
test涵数,用for in 遍历不出
429365799 commented
实在不想写prototype,最后在constructor里面手动注册了方法。。。。。
r5libs commented
需要将类的函式都设定enumerable为true.
这部分可以先写好es6 class, 再写一个辅助函式将类的每个函式添加enumerable为true.