2

私の Flex アプリケーションは Web サービスを正しく呼び出しますが、ドロップダウン ボックスに入力しません。

アプリケーションを実行すると、ドロップダウン ボックスが空になります。

私のフレックスコードは次のとおりです

<fx:Script>

    <![CDATA[
        import mx.controls.Alert;
        import mx.events.FlexEvent;

        protected function  
                    dropDownList2_creationCompleteHandler(event:FlexEvent):void
        {
            mycustomersResult2.token = hellos.mycustomers();
        }

    ]]> 
</fx:Script>

    <fx:Declarations>

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

    <s:CallResponder id="mycustomersResult2"/>

</fx:Declarations>

 <s:FormItem label="Label">
  <s:DropDownList id="dropDownList2"
       creationComplete="dropDownList2_creationCompleteHandler(event)"
       labelField="age">
       <s:AsyncListView list="{mycustomersResult2.lastResult}"/>
  </s:DropDownList>
  </s:FormItem>
4

2 に答える 2

3

これをデバッグしている間、サーバー/ネットワーク モニターを使用する必要はありません。

constXML コードを保持する一時的なものを作成し、それを操作するだけです。

/*private static*/ const MY_XML:XML =
<soapenv:Envelope 
  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
  xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Body>
    <mycustomersResponse xmlns="http://Services.com">
      <mycustomersReturn>
          <age>28</age>
          <name>Jack</name>
      </mycustomersReturn>
      <mycustomersReturn>
          <age>29</age>
          <name>Ben</name>
      </mycustomersReturn>
   </mycustomersResponse>
 </soapenv:Body>
</soapenv:Envelope>;

(はい、上記の引用符は使用しないでください)。

于 2013-01-10T09:45:24.937 に答える
2

ウォッチ式を使用してデバッグモードでこの行を確認できますか?

mycustomersResult2.lastResult.mycustomersResponse

lastResult に mycustomersResponse プロパティがあることを確認してください。

ありがとう、ディラジ

于 2013-01-10T06:37:27.060 に答える