使用 pop() 时调用未定义方法时出错
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您将按钮用作 DataGrid 中的项目渲染器或项目编辑器,否则
data.pop()
很可能无法工作。如果您定义了一个名为
data
的Array
类型变量,请尝试将其重命名为其他名称。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
calleddata
try to rename it to something else.data
is used by the framework itself.