Flash CS4中是否存在與Flex HTTPService類相同的標準?Flex中的Flash HTTPService
2
A
回答
2
您可以利用Flex CS4中的Flex類,通過添加對flex庫的引用來解釋in this blog。 該示例使用Web Service組件,但您可以同樣使用HttpService。
2
是,但你必須做手工,你必須選擇,用的URLLoader結合的URLRequest例如:
var urlloader:URLLoader = new URLLoader();
urlloader.addEventListener(Event.COMPLETE , completeFunction);
urlloader.load(new URLRequest("http://......"));
function completeFunction(e:Event):void
{
// do what you want with the result
e.currentTarget.data
}
或只包括與閃光燈CS你lib文件夾中flex.swc並使用HTTspervice
相關問題
- 1. Flash AIR HTTPService
- 2. Flex - URLLoader和HTTPService
- 3. Flex HTTPService錯誤
- 4. Flex httpservice故障
- 5. Flex HTTPService進度條
- 6. Flex HTTPService組件的resultFormat
- 7. Flex:中繼器中httpservice的XML數據
- 8. 在flex中的HTTPService的遠程實現
- 9. Flex中的兩個不同的HTTPService類
- 10. 帶有多連接的Flex中的HTTPService
- 11. 中的Flex/AS3使用的HTTPService
- 12. 在flex中延遲的結果HTTPService
- 13. Flex中的同步httpservice請求
- 14. HTTPService/ResultEvent與Flex 3.2對比Flex> = 3.5
- 15. Flex Air - 每次HTTPService TimeOut
- 16. 的HTTPService ......在localhost
- 17. 中的Flash組件的Flex
- 18. XML和HTTPService
- 19. Flex:Timer + HTTPService
- 20. Flex - Remoting與HTTPService - 什麼時候使用?
- 21. 在窗體上flex幾個httpservice
- 22. Flex HTTPService組件返回多個XML頭
- 23. 關於Flex HTTPService組件問題
- 24. Flex HTTPService超時處理程序
- 25. Flex HttpService授權獲取xml Feed
- 26. Flex HTTPService不包含Content-Length標頭?
- 27. Flex - HTTPService和gzip壓縮響應?
- 28. flex httpservice POST標頭/ XML負載形成
- 29. Flex HTTPService組件超時反正
- 30. Flex - 如何覆蓋結果事件(HTTPService)?
這個問題已經有*年*前接受的答案... – alestanis 2012-10-28 19:21:57
是的,但這個新的答案是一個更透徹的答案,增加了有用的信息(儘管草率寫作)。 – ivanreese 2013-02-05 01:04:09