schedule怎么传参数

schedule默认绑定的函数都只带一个dt参数,怎么传入其他参数,别跟我说用组件的属性来传

this.scheduleOnce(function (参数1, 参数2) {
     //yo yo qiekenao!
}.bind(target, 参数1,参数2,.....), 1)

你试试看,如果不行就这样再试试看

this.scheduleOnce(function (dt, 参数1, 参数2) {
     //yo yo qiekenao!
}.bind(target, 参数1,参数2,.....), 1)

如果还是不行就看看arguments里到底有多少个参数

学习了。待会试试