在堆栈/流对象中存储信息

发布于 2024-10-31 00:40:35 字数 378 浏览 0 评论 0原文

假设我有以下类型的应用程序:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

池予 2024-11-07 00:40:35
Shoes.app do
    @i = 0

    def add_button
        n = @i+1
        button ("#{@i += 1}") {alert n}
    end

    button("0") {add_button}
end
Shoes.app do
    @i = 0

    def add_button
        n = @i+1
        button ("#{@i += 1}") {alert n}
    end

    button("0") {add_button}
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文