3
如何创建多级下拉列表并与来自服务器的数据绑定
我是Angular的新手。我在Angular上有一些工作。 我需要Json通过调用Rest Api为来自服务器的数据绑定嵌套下拉列表。 数据具有一个属性LgLevel,指定组层次结构中的级别。家长会level=0,即时Child=1,Grandchild=2等等。Child并Grandchild具有ParentLocationGroup字段,该字段显示在哪个父菜单,子菜单中。 这是我的json数据。我有大量数据,但没有全部显示。 { "ArrayOfLocationGroup": { "LocationGroup": [ { "Id": "628", "Name": "TEST1", "GroupId": { "_xmlns": "http://www.air-watch.com/servicemodel/resources" }, "ParentLocationGroup": { "_uuid": "bdce4396-9c60-4831-90f2-6f793becb362", "__text": "570" }, "LgLevel": { "_xmlns": "http://www.air-watch.com/servicemodel/resources", "__text": "0" } }, { "Id": "630", "Name": "TEST2", "GroupId": { "_xmlns": "http://www.air-watch.com/servicemodel/resources", "__text": "PAM-TEST" }, "ParentLocationGroup": { "_uuid": …