gpt4 book ai didi

javascript - AngularJS limitTo 与模型中的值 (JSON)

转载 作者:行者123 更新时间:2023-12-03 11:29:58 24 4
gpt4 key购买 nike

我的模型从 json 文件加载他的数据。

{
"soonepisodes":{
"limit":"3",
"oderby":"percent"
},
"featuredreview":"1",
"newsticker":{
"limit":5
}
}

加载第二个 json:

[
{"id":"1","project":"Tokyo Ghoul","episode":"03","percent":"70","current":"QC","planned":"01.01.2015"},
{"id":"2","project":"Tokyo Ghoul","episode":"03","percent":"50","current":"QC","planned":"01.01.2015"},
{"id":"3","project":"Tokyo Ghoul","episode":"03","percent":"40","current":"QC","planned":"01.01.2015"},
{"id":"4","project":"Tokyo Ghoul","episode":"03","percent":"30","current":"QC","planned":"01.01.2015"},
{"id":"5","project":"Tokyo Ghoul","episode":"03","percent":"10","current":"QC","planned":"01.01.2015"}
]

第一个用于某些设置,例如如何从第二个 json 中排序信息以及一次显示多少个结果。

我的模板是这样的:

<div id="releases-soon">
<ul>
<li ng-repeat="release in feed.releases | orderBy:'feed.soonepisodes.oderby' | limitTo:3 ">
{{release.percent}}<!-- | orderBy:'feed.soonepisodes.oderby' 'feed.soonepisodes.limit'-->
</li>
</ul>
</div>

首先,我想按给定方向排序 - 这可以通过我的变量名称正常工作。 ( feed 是我在这个模型中的别名)现在我想使用 - 插入这种硬编码形式的限制 - 来 self 的 Controller 的变量 -> feed.soonepisodes.limit

我尝试使用单引号、不带引号、jason 中带引号以及 json 中不带引号的表达式来将 View 限制为 json 中的给定值,但我从未看到任何内容(例如 limitTo:0)

我做错了什么?

最佳答案

不要将 orderBy 参数括在引号中。

替换:

orderBy:'feed.soonepisodes.oderby'

与:

orderBy:feed.soonepisodes.oderby

关于javascript - AngularJS limitTo 与模型中的值 (JSON),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26774852/

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