0
A
回答
0
我用這一點,下面是該語法。
<mx:RemoteObject id="roTestQuestion" destination="GenericDestination"
source="FlexDataLayer.BusinessLogic.TestQuestionBLL" showBusyCursor="true" fault=" {onFault(event);}">
<mx:method name="GetList" result="{roTestQuestion_GetList(event);}" />
<mx:method name="GetAnswerList" result="{roTestQuestion_GetAnswerList(event);}" />
<mx:method name="Insert" result="{roTestQuestion_Insert(event);}" />
<mx:method name="Update" result="{roTestQuestion_Update(event);}" />
<mx:method name="Delete" result="{roTestQuestion_Delete(event);}" />
<mx:method name="GetListByCategoryID" result="{roTestQuestion_GetListByCategoryID(event);}" />
</mx:RemoteObject>
源是你的.NET類,你需要創建一個方法,我寫錯誤和結果。
的故障
private function onFault(e:FaultEvent):void
{
Alert.show(e.fault.message.toString(),parentApplication.alertTitle);
}
的結果
private function roTestQuestion_Delete(e:ResultEvent):void
{
if (e.result!= null)
{
if(cbCat.selectedIndex == 0)
{
roTestQuestion.GetList();
}
else
{
roTestQuestion.GetListByCategoryID(selIndex);
}
//roTestQuestion.GetList();
//Application.application._mdlExamSelection.Init();
}
}
這裏我給打電話從RemoteObject該方法的方法。
roTestQuestion.GetList();
您是初學者,所以我建議你去通過下面的鏈接,因爲在未來ü需要使用ActionScript而這個鏈接將要對你非常有用......
請訪問這Link
相關問題
- 1. 需要點擊兩次Flex按鈕才能獲得RemoteObject結果
- 2. Flex RemoteObject源找不到
- 3. Flex 3動態RemoteObject類
- 4. SQL語法需要
- 5. 需要語法parseJSON
- 6. 需要sfwidgetformtextarea語法
- 7. Flex RemoteObject + Zend AMF服務器問題
- 8. Flex RemoteObject - 處理多個請求
- 9. 如何使用Flex RemoteObject方法設置HTTP標頭?
- 10. Flex - 如何中止/停止RemoteObject方法調用?
- 11. Flex - '無法創建類的類'錯誤RemoteObject
- 12. Flex RemoteObject間歇性地無法調用CFC
- 13. 需要關於此語法的幫助:「#define LEDs(char *)0x0003010」
- 14. clojure需要語法理由
- 15. 需要幫助的語法
- 16. VHDL語法解釋需要
- 17. JavaScript語法幫助需要
- 18. 需要JavaScript語法修正
- 19. 需要Elm語法幫助
- 20. 在節點需要語法
- 21. 需要語法幫助,asp:SqlDataSource
- 22. javascript if語句語法(需要幫助)
- 23. Flex中需要過濾器
- 24. flex DateChooser不需要選擇
- 25. 需要幫助重構此方法
- 26. RemoteObject方法返回值
- 27. 中止RemoteObject調用
- 28. Flex語法錯誤
- 29. 我需要使用flex/bison進行語義檢查
- 30. 無法綁定來自BlazeDS的RemoteObject
感謝薩格爾拉瓦爾, 我會嘗試這一點,並告訴你,如果我得到任何問題。 – 2011-12-22 08:44:55
沒問題。我相信你不會去解決任何問題。 – 2011-12-22 08:47:28
感謝卓越的工作sagar ....它幫助我很多 – 2012-01-07 06:30:58