flex 将参数传递给自定义组件

发布于 2024-10-17 03:14:10 字数 316 浏览 2 评论 0原文

我有一个用动作脚本编写的自定义组件(无 UI)。我正在库项目中存在的 mxml 文件中实例化此组件。自定义组件有一个带有一个参数的构造函数。

该库项目在其他一些 Web 项目中使用,我从其中将变量传递给此 mxml 文件。[我已将 Web 项目的源链接到库的源。]。

我的库项目中有一个静态变量,它保存项目当前对象的引用。我需要这个静态变量才能使用 mxml 文件中存在的属性。

我无法在自定义组件的构造函数中使用从 Web 项目发送的属性,但能够在自定义组件中存在的某些其他函数中使用相同的属性。

请帮我!

谢谢安吉

I have a custom component written in action script (no UI). I am instantiating this component in an mxml file which is present in a library project. The custom component has a constructor which takes one argument.

The library project is used in some other web project from where i pass a variable to this mxml file.[I have linked source of the web project to source of library.].

I have a static variable in my library project which holds the reference of the current object of the project. I need this static variable in order to use properties present in the mxml file.

I am unable to use the property sent from the web project in the constructor of the custom component, but able to use the same in some other function present in the custom component.

Please help me!

Thanks

Anji

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

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

发布评论

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

评论(1

尝蛊 2024-10-24 03:14:10

如果您能够从 mxml 访问所需的值:
mxml 代码:

<local:MyComponent varname="value"/>

AS3 代码:

private var _varname:Type;
public function MyComponent(){
    //empty constructor
}
public function set varname(newVal: Type):void{
    _varname = newVal;
    //constructor code here
}

否则,您必须找到当您需要的变量已经存在时触发的 MyComponent 事件可访问(例如CREATION_COMPLETE):
AS3代码:

public function MyComponent() {
    addEventListener(FlexEvent.CREATION_COMPLETE, onCreated);
}

private function onCreated(e:FlexEvent):void {
    //access of the variable and constructor code
}

if you are able to access the value you need from mxml:
mxml code:

<local:MyComponent varname="value"/>

AS3 code:

private var _varname:Type;
public function MyComponent(){
    //empty constructor
}
public function set varname(newVal: Type):void{
    _varname = newVal;
    //constructor code here
}

else you'll have to find the MyComponent event that is fired when the variable you need is already accessible (e.g. CREATION_COMPLETE):
AS3 code:

public function MyComponent() {
    addEventListener(FlexEvent.CREATION_COMPLETE, onCreated);
}

private function onCreated(e:FlexEvent):void {
    //access of the variable and constructor code
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文