gpt4 book ai didi

arrays - angularjs如何将值推送到数组的特定位置

转载 作者:行者123 更新时间:2023-12-02 21:36:40 27 4
gpt4 key购买 nike

我有一个选择下拉列表,它从数组中获取值。如果条件为真,我想将一个值推送到数组的第一个位置。

<select name="child_age">
<option ng-repeat="child_age in age">{{child_age.childCount}}</option>
</select>

child 年龄数组$scope.age = [{childCount:'1岁'},{childCount:'2岁'}];

我想将以下值推到第一个位置。 $scope.age.push({ childCount: ' child 1 岁' })

但是已经添加到最后一个位置了。

我也尝试了以下代码

$scope.age.splice(0,0,"Child 1 Age")

它显示了位置。但不显示值

谁能帮我解决这个问题吗?谢谢

最佳答案

不要使用.push,而是使用.unshift

我还建议使用 ng-options而不是自己执行 ng-repeat,但这在这种情况下不会产生功能差异。

关于arrays - angularjs如何将值推送到数组的特定位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21229717/

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