我在 MeteorJS 项目中使用 Opal。
我正在尝试找出一种方法来Meteor.startup
编写代码,但它似乎不起作用..
我认为这会起作用:
require 'native'
@Meteor = `Meteor`
@Meteor.startup do
puts 'Go'
end
但事实并非如此。编译后的代码应如下所示:
Meteor.startup( function() {
console.log( "GO" );
} );
在 JS 中将函数作为参数抛出是很正常的,我们如何在 Opal 中做到这一点?