gpt4 book ai didi

python - 在 angularjs ng-repeat 中操作 json 对象

转载 作者:行者123 更新时间:2023-12-01 05:06:24 25 4
gpt4 key购买 nike

目前我正在使用 Python 和前端 Angularjs 工作。我正在使用 JSON 对象获取数据。现在我想在我的 ng-repeat 中使用该 JSON 对象。下面是我的代码:-

可以这样使用吗?

{{result['products']}}


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

</label>
</div>

最佳答案

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

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>

关于python - 在 angularjs ng-repeat 中操作 json 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24926512/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com