AngularJs xml两个listBox

时间:2014-03-09 21:27:33

标签: xml angularjs

我想用这个xml做两个列表框。其中一个必须列出Name1的值,另一个必须列出Name2的值......但是我不能列出其中必须列出Name2值的列表框。

<RequestType>
    <FullName i:nil="true" />
    <Name1>Request of other equipment</Name1>
    <iId>11</iId>
    <iId1>3</iId1>
    <nameList>
        <RequestTypeList>
            <Name2>IT Equipment</Name2>
            <iId2>5</iId2>
        </RequestTypeList>
        <RequestTypeList>
            <Name2>Phone Equipment</Name2>
            <iId2>5</iId2>
        </RequestTypeList>
        <RequestTypeList>
            <Name2>Radio Equipment</Name2>
            <iId2>5</iId2>
        </RequestTypeList>
        <RequestTypeList>
            <Name2>Other</Name2>
            <iId2>5</iId2>
        </RequestTypeList>
    </nameList>
</RequestType>

和我的HTML

<select ng-options="a.iId as a.Name1 for a in RTypes"></select>

0 个答案:

没有答案