程序上等价于:{foo(boundProperty)}?

发布于 2024-10-14 03:29:28 字数 358 浏览 1 评论 0原文

是否有与以下内容等效的编程:

当使用 mxml 时,我可以将属性绑定到函数,这样如果属性更改,将调用绑定的函数(以绑定属性作为参数。

例如:

<fx:Script>
    <![CDATA[

        [Bindable]
        var type:String;
        private function getText(t:String):String{
        }

    ]]>
</fx:Script>


<s:Label text="{getText(type)}" />

是否有编程相等的? 提前致谢!

Is there a programmatic equivalent of the following:

When using mxml, I can bind a property to a function, so that if the property changes, the bound function will be invoked (with the bound property as parameter.

For example:

<fx:Script>
    <![CDATA[

        [Bindable]
        var type:String;
        private function getText(t:String):String{
        }

    ]]>
</fx:Script>


<s:Label text="{getText(type)}" />

Is there a programmatic equivalent?
Thanks in advance!

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

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

发布评论

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

评论(1

花落人断肠 2024-10-21 03:29:28

是的。

我已经有一段时间没有使用这个了,但实际上,MXMLC 编译器会将您的 .mxml 文件和带有元数据的文件处理为功能等效的 AS3 源文件,然后将其编译为字节码。如果从命令行运行 MXMLC,启用此功能的选项是 keep- generated-actionscript=true 。在 IDE 中,您应该在项目 -> 属性 -> 编译器选项下使用它。

请注意,这些生成的文件并不是真正可读的,但最终它们向您展示了幕后发生的许多事情,包括 mxml 绑定的实现方式。

(更直接相关的是,很有可能 http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/binding/utils/BindingUtils.html 和 ChangeWatcher.html 与您想要的内容有关。)

Yes.

It's been a while since I played with this, but effectively, the MXMLC compiler will process your .mxml files and files with metadata into functionally equivalent AS3 source files, which are then compiled into bytecode. If you run MXMLC from the command line, the option to enable this is keep-generated-actionscript=true . From the IDE, you should be to use that under project->properties->compiler options.

Be warned, those generated files aren't really meant to be readable, but ultimately they show you a lot of what's happening behind the scenes, including the way mxml bindings are implemented.

(more directly relevant, there's a good chance that http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/binding/utils/BindingUtils.html and ChangeWatcher.html have something to do with what you want.)

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