1

我正在尝试在 flex 中设置 swiz 框架,但似乎无法编译。我使用的是 swiz 0.6.2 和 flex 3.0.2。swc 在我的 flex 项目的 libs 目录中。

我在这里关注教程:http ://code.google.com/p/swizframework/wiki/DefiningApplicationComponents

我的代码看起来像:

Swiz.mxml--

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
                    layout="absolute" width="100%" height="100%"
                    preinitialize="onInitialize()">

    <mx:Script>
    <![CDATA[
            import org.swizframework.Swiz;

            private function onInitialize() : void {
                    // load up swiz beans
                    Swiz.loadBeans( [ Beans ] );
            }
    ]]>
 </mx:Script>

    <!-- rest of view -->

 </mx:Application>

Beans.mxml--

<?xml version="1.0" encoding="utf-8"?>
<BeanLoader xmlns="org.swizframework.util.*" xmlns:mx="http://www.adobe.com/2006/mxml">
    <!-- custom channel set -->
    <DynamicChannelSet id="myAmfChannel">
            <serverPort>8080</serverPort>
            <contextRoot>/demo-web</contextRoot>
    </DynamicChannelSet>

    <!-- user service --> 
    <mx:RemoteObject id="userService" 
                              destination="userService" 
                              channelSet="{myAmfChannel}"/>
 </BeanLoader>

当我尝试编译时,我通过静态类型 Class 的引用得到错误 unidentified method loadBeans。有什么想法吗?

4

1 回答 1

0

弄清楚了。这都是旧的 swiz 语法,文档已经过时。了解正确方法的一个很好的教程在这里:http ://www.firemoss.com/index.cfm/2009/10/21/Swiz-in-20-minutes-video--byebye-boilerplate 。

于 2009-11-05T16:35:51.530 回答