flex 4 의 새로운 데이터 형식 에 대한 영어 대조
by Flying 2010.4.15 22:53
There is a new data type: ArrayLis, I wonder if you have known it or not. ArrayList implements IList interface and use Array as its source of the data. Essentially it is a lightweight ArrayCollection, and can be used as source of the data to bind to the control. ArrayCollection can apply sort and filter, but ArrayList can't.
See the following examples:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
<fx:Declarations>
<s:ArrayList id="al">
<fx:Object type="Line" class="LineSeries"/>
<fx:Object type="Mountain" class="AreaSeries"/>
<fx:Object type="Candlestick" class="CandlestickSeries"/>
<fx:Object type="HLOC" class="HLOCSeries"/>
</s:ArrayList>
</fx:Declarations>
<s:DropDownList dataProvider="{al}"
labelField="type" selectedIndex="0"/>
</s:Application>
Note that the list based Spark controls can't directly use Array as it's dataProvider, the dataProvider must implement IList interface, which should be one of the reasons to introduce ArrayList
Flex 4 에 새로운 데이터 형식 을 도 입 했 습 니 다: Array List.그것 은 IList 인 터 페 이 스 를 실현 하고 밑바닥 은 Array 를 데이터 소스 로 한다.본질 적 으로 이것 은 경량급 의 Array Collection 으로 데이터 원본 으로 컨트롤 에 연결 할 수 있다.그러나 Array Collection 과 달리 배열 을 선별 하고 걸 러 낼 수 없습니다.
다음 실례 를 보십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
XML이란 무엇입니까?이것은 저장, 검색 및 공유할 수 있는 형식으로 데이터를 저장하는 강력한 방법입니다. 가장 중요한 것은 XML의 기본 형식이 표준화되어 있기 때문에 시스템이나 플랫폼 간에 로컬 또는 인터넷을 통해 XML을 공유하거나...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.