如何使用特定类打开类浏览器?

时间:2015-01-04 14:35:01

标签: smalltalk amber-smalltalk

Amber Smalltalk版本0.13

this project中,我想用特定的类打开类浏览器。

  <button onClick="amber.globals.Browser._openOn_(amber.globals.ProcessingClock)">ProcessingClock class

我收到错误消息amber not defined(参见下面的屏幕截图)。

问题 如何正确打开浏览器?

enter image description here

1 个答案:

答案 0 :(得分:0)

当然没有定义,amber只是加载器回调函数的局部变量(即参数)。要么记住它到一些全局并重用按钮onclick代码(丑陋),直接在加载器回调内的按钮上安装onclick处理程序,在那里你可以访问amber变量(可能很笨,但最干净),或者使用直接onclick处理程序中require('amber/helpers')代替amber(在您的示例中,您需要使用它两次)。