使用 pop() 时调用未定义方法时出错

发布于 2024-10-11 01:49:59 字数 219 浏览 4 评论 0原文

我正在尝试将 pop 函数添加到 Flex 4 中的按钮。但是当我尝试使用它时,我不断收到对未定义方法的错误调用,但它是一个内置函数,不是吗?我在下面发布了我的代码,有什么想法吗?

    <s:Button x="405" y="410" label="Undo last" width="85" click="data.pop()" id="undo"/>

I'm trying to add the pop function to a button in flex 4. But I keep getting an error call to undefined method when I try to use it, but it's a built in function isn't it? I posted my code below, any ideas?

    <s:Button x="405" y="410" label="Undo last" width="85" click="data.pop()" id="undo"/>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

岛歌少女 2024-10-18 01:49:59

除非您将按钮用作 DataGrid 中的项目渲染器或项目编辑器,否则 data.pop() 很可能无法工作。

如果您定义了一个名为 dataArray 类型变量,请尝试将其重命名为其他名称。 data 由框架本身使用。

data.pop() most likely won't work unless you are using your button as item renderer or item editor in a DataGrid.

In case you defined a variable of type Array called data try to rename it to something else. data is used by the framework itself.

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