如何获取 "parent name" 并读取 ng-repeat AngularJs 中的对象?

how get the "parent name" and read the object in the ng-repeat AngujarJs?

如果我有这样的响应对象:

Object Json format 来自我的 js 文件,我需要为此元素使用 ng-repeat 但我也需要获取名称 "street 1",如何使用 ng-repeat 获取所有值使用 "parent name" 和他的属性。谢谢

尝试这样的事情

<div ng-repeat = "(key ,value) in YourObject">
   <div class = "title">{{key}}</div> <!-- name of object e.g street1-->
   <div class = "body">contract : {{value[0].contract}} status: {{value[0].status}}</div>
   <div class = "body">contract : {{value[1].contract}} status: {{value[1].status}}</div>
</div>

<div ng-repeat = "(key ,value) in YourObject">
   <h1 class = "title">{{key}}</h1> <!-- name of object e.g street1-->
   <div class = "body" ng-repeat = "item in value">
        {{item.contract}} / {{item.status}} 
   </div>
</div>