使用数组中的元素使用 AngularJS 更改状态
Posted
技术标签:
【中文标题】使用数组中的元素使用 AngularJS 更改状态【英文标题】:Changing States with AngularJS using element from an array 【发布时间】:2018-06-11 00:26:12 【问题描述】:我有一个充满文章的数组,显示一个元素:
$scope.articles = [];
//New article
var article = ;
article.heading = "A DISCUSSION WITH ATHEISTS ON EVOLUTION";
article.date = "December 24, 2017";
article.description = "The point of my discussion was to attempt to convince a relatively large group of atheists in r/DebateAnAtheist that the theory of evolution which they hold on to so dearly is in fact a random process. It is generally maintained that evolution is not random due to natural selection. This idea, however, is fundamentally flawed.";
article.link = "evolution-debate";
article.img = "templates/articles/evolution-debate/darwin.jpg";
//Add to array
$scope.articles.push(article);
我想将我的状态更改为进化辩论状态:
.state("evolution-debate",
url: "/evolution-debate",
templateUrl: "templates/articles/evolution-debate.html",
controller: 'articles'
)
但由于我从数组加载文章,我需要使用数组对象中的 article.link 属性更改状态。
我目前正在使用这段代码,但它不会改变状态:
<ul class="actions">
<li><a ng-click="go('article.link')" class="button big">READ NOW</a></li>
</ul>
任何帮助将不胜感激。
【问题讨论】:
您可以使用 立即阅读 导航到您的文章 我很高兴能够提供帮助。如果有人遇到类似问题,还可以添加作为答案,比 cmets 更容易遵循答案。 【参考方案1】:您可以使用 ui-sref 导航到您的文章
<a ui-sref="article.link">READ NOW</a>
【讨论】:
以上是关于使用数组中的元素使用 AngularJS 更改状态的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 angularjs 或 jQuery 更改 HTML 表格中的文本颜色?