gpt4 book ai didi

javascript - Angular - 如何打印键值的值

转载 作者:行者123 更新时间:2023-12-03 06:59:40 25 4
gpt4 key购买 nike

我有 $scope.count,我想显示表中特定数据的计数。我做了这个:

$result = $this->_em->createQueryBuilder()
->select('count(u.teamId)')
->from('mypath\Entities\Teams', 'u')
->where('u.teamType =:teamType')
->setParameters(['teamType' => 4 ])
->getQuery()
->getScalarResult();
return $result;

我将结果保存在$scope.count中:

<label class="btn btn-yellow force-btn">Model = {{ count }} </label>

$scope.count 的结果是:

[{"1":"2"}]

尽管如此,我只想显示2。有什么建议吗?

最佳答案

试试这个

 <label class="btn btn-yellow force-btn">Model = {{ count[0]["1"] }} </label>

关于javascript - Angular - 如何打印键值的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37112454/

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