从主 Flex 应用程序调用 mxml 组件中的函数
在我的主应用程序中,我有一个带有 3 个子视图的视图堆栈。在视图堆栈更改处理程序中,我以编程方式更改 selectedchild 属性。
据我了解,每次更改 selectedChild 属性时,不会调用视图的初始化方法。所以我也尝试以编程方式调用 init 方法。
view1.mxml
<fx:Script>
<![CDATA[
public function init():void{
//something
}
]]>
</fx:Script>
main.mxml
viewStack.selectedChild = viewStack.getChildByName("viewname") as NavigatorContent;
var v1:view1 = new view1();
v1.init();
但我收到空指针错误。我错过了什么吗? 任何帮助将不胜感激。我是这里的初学者。
In my main application I have a viewstack with 3 child views. In the viewstack change handler, I programmatically change the selectedchild property.
I understand that the initialize method for the view is not called every time I change the selectedChild Property. So I tried to invoke the init method programmatically too..
view1.mxml
<fx:Script>
<![CDATA[
public function init():void{
//something
}
]]>
</fx:Script>
main.mxml
viewStack.selectedChild = viewStack.getChildByName("viewname") as NavigatorContent;
var v1:view1 = new view1();
v1.init();
But I get a null pointer error. Am I missing anything?
Any help would be appreciated. I am a beginner here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 main.mxml 应用程序中,您正在创建 view1 组件的新实例,您需要执行视图堆栈当前实例的 init() 方法。
你为什么不尝试做这样的事情:
其中 yourComponentId 是 Viewstack 内 navigatorContent 内的组件。
无论如何,你不应该这样做,至少不应该这样。
问候!
加布里埃尔.-
In your main.mxml app, you are creating a new instance of the view1 component and what you need is to execute the init() method of the current instance of the viewstack.
Why don't you try doing somethig like this:
where yourComponentId is your component inside the navigatorContent inside your Viewstack.
Anyway you should't be doing this, at least not this way.
Greetings!
Gabriel.-
我用过
并且有效!
I used
And it works!!