0

私はこのようなphpサービスを持っています。

    <stockproductservice:StockproductService id="stockproductService"
                                             fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)"
                                             showBusyCursor="true"/>

そしてそれはphpサービスを使用します。

itemRedenererでデータプロバイダーを設定するにはどうすればよいですか?

        <s:DataService source="{stockproductService.getAllStockproduct1()}"/>

        <s:WebService source="{stockproductService.getAllStockproduct1()}"/>

動作していません。

4

1 に答える 1

0

最も単純な形式でdataProviderにデータを入力するようにWebServiceを設定する方法が質問の場合は、次のようになります。

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" creationComplete="creationCompleteHandler(event)"
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">

    <s:List dataProvider="{restaurants}" labelField="name" />

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

    <fx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;
            import mx.events.FlexEvent;

            [Bindable]
            public var restaurants:ArrayCollection;

            protected function creationCompleteHandler(event:FlexEvent):void
            {
                getRestaurantsResult.token = RestaurantWS.getRestaurants(); 
            }

        ]]>
    </fx:Script>
</s:Application>
于 2012-09-22T09:03:41.503 に答える