我正在尝试在 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。有什么想法吗?