从主 Flex 应用程序调用 mxml 组件中的函数

发布于 2024-10-08 11:15:23 字数 546 浏览 3 评论 0原文

在我的主应用程序中,我有一个带有 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 技术交流群。

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

发布评论

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

评论(2

☆獨立☆ 2024-10-15 11:15:23

在 main.mxml 应用程序中,您正在创建 view1 组件的新实例,您需要执行视图堆栈当前实例的 init() 方法。

你为什么不尝试做这样的事情:

var view:View1 = viewStack.getChildByName("viewname").getChildByName("yourComponentId") as View1;

view.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:

var view:View1 = viewStack.getChildByName("viewname").getChildByName("yourComponentId") as View1;

view.init();

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.-

瘫痪情歌 2024-10-15 11:15:23

我用过

FlexGlobals.topLevelApplication.[viewId].init();

并且有效!

I used

FlexGlobals.topLevelApplication.[viewId].init();

And it works!!

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