我正在采取婴儿步骤opalrb
,这是我的main.rb
:
require 'native'
def main
puts "hi from the main function in main.rb"
end
def demoButton
outputDiv = Element.find('output').get(0)
puts outputDiv.methods.sort
end
它包含在<head>
after中opal.js
,...opal-parser.js" onload="Opal.load('opal-parser')"
但控制台显示抛出异常:
{
message: "cannot load such file -- native",
name: "LoadError",
stack: ""
}
native
似乎是 opal 标准库的一部分,那么为什么包含它会有问题呢?