Adobe Flex: Cannot Convert XMLList to mx.collections.IList

前端 未结 2 729
独厮守ぢ
独厮守ぢ 2021-01-24 19:42

My Flex app runs a service to a php page that pulls data from my database, then structures the result in an XML format. I created a new XMLList called testList outs

2条回答
  •  爱一瞬间的悲伤
    2021-01-24 20:14

    You probably are using this inside a module or a swf that you've loaded, and the loader has a different applicationDomain than the parent, and some other loaded module or swf is also using XMLList or XMLListCollection. Without more details on your architecture, I can only tell you to make sure the parent applicationDomain loads in XMLList and/or XMLListCollection before either child, or make sure they both share the parent's applicationDomain.

提交回复
热议问题