我已经在 Ubuntu 安装了 Shoes,但它无法正常工作。例:
它不起作用
Shoes.app :width => 200 :height => 300 do
button("Hello"){
alert("DaBuDi")
}
end
它在鞋子窗口中写入"语法错误"...
Shoes.app do
button("Hello"){
alert("DaBuDi")
}
end
它有效。
我已经按照 https://github.com/shoes/shoes/wiki/Building-Shoes-on-Linux 中的说明安装了鞋子
您错过了哈希对之间的,
Shoes.app :width => 200, :height => 300 do
也许()
更好
Shoes.app(:width => 200, :height => 300) do