const handle = Meteor.subscribe('lists.public');Tracker.autorun(() => { const isReady = handle.ready(); console.log(`Handle is ${isReady ? 'ready' : 'not ready'}`); });实例代码如上,本来Tracker.autorun()中的内容应该是一段可执行的函数。求大神解释下() =>的含义。
添加回答
举报
0/150
提交
取消