在angularjs ng-repeat中处理json对象

时间:2014-07-24 06:26:41

标签: python json angularjs

我正在使用Python和前端Angularjs工作。我正在使用JSON对象查看数据。现在我想在我的ng-repeat中使用那个JSON对象.Below是我的代码: -

可以像那样使用??

{{result['products']}}


    <div ng-repeat="choice in {{result['products']}}" >
      <label>
        <input type="radio" name="choice" ng-model="" value="">

      </label>
    </div>

2 个答案:

答案 0 :(得分:1)

您不需要将{{ }}放在对象周围:

<div ng-repeat="choice in result.products" >
   ...
</div>

答案 1 :(得分:1)

是的,您可能不需要{{}}

function Ctrl() {
    this.obj = {id: 'a', checked :true, result: {0:0,1:1,2:2}}

};

试试这个:

<div ng:controller="Ctrl"> 
   <div ng:repeat="o in obj.result">
       {{o}}
    </div>

</div>