在堆栈/流对象中存储信息
假设我有以下类型的应用程序:
Shoes.app do
@i = 0
def add_button
button ("#{@i += 1}")
end
button("0") {add_button}
end
这样每次您单击该按钮时,它都会添加一个具有更高编号的新按钮。有没有什么方法可以对其进行编码,以便单击新按钮之一会显示其编号?由于 self
始终指向应用程序,因此明显的方法
button ("#{@i += 1}") {alert @i}
不起作用,因为单击任何按钮只会显示 @i
的当前值。
Say I have the following sort of app:
Shoes.app do
@i = 0
def add_button
button ("#{@i += 1}")
end
button("0") {add_button}
end
So that each time you click the button it adds a new button with a higher number. Is there any way to code it so that clicking one of the new buttons displays its number? Since self
always points to the app, the obvious approach
button ("#{@i += 1}") {alert @i}
Doesn't work, since then clicking any button just displays the current value of @i
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)