2

我刚刚开始研究 Flex。可能是它的基本问题,但我不知道 - 我如何从 actionscript 调用 java 方法。我想在双击事件时调用一些 java 方法。你能告诉我如何进行吗?

4

1 回答 1

1

在 Flash Builder 的数据菜单下,有数据服务向导:

数据服务

这些向导自动生成代码并且便于连接到 WSDL:

wsdl

或 HTTP 服务:

http服务

访问数据服务概述具有示例实现,例如此示例调用餐厅 Web 服务,响应者从服务返回值对象。

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/halo"
               xmlns:employeesservice="services.employeesservice.*"
               xmlns:valueObjects="valueObjects.*">

    <fx:Declarations>
        <s:WebService id="RestaurantSvc"
                      wsdl="http://examples.adobe.com/flex3app/restaurant_ws/RestaurantWS.xml?wsdl" />
        <s:CallResponder id="getRestaurantsResult"
                         result="restaurants = getRestaurantsResult.lastResult as Restaurant" />
    </fx:Declarations>

    <fx:Script>
        <![CDATA[
            import mx.controls.Alert;

            protected function b1_clickHandler(event:MouseEvent):void
            {
                getRestaurantsResult.token = RestaurantWS.getRestaurants();
            }
        ]]>
    </fx:Script>

    <s:Button id="b1"
              label="GetRestaurants"
              click="button_clickHandler(event)" />

</s:Application>

参考:

于 2013-05-14T01:40:48.220 回答