ng-repeat链接打开angularjs中的详细视图

时间:2014-10-30 06:42:11

标签: angularjs view hyperlink ng-repeat

我一直试图将我的拇指元素链接到打开详细视图。 目前我有这个Plunker example,由于某种原因,我无法在ng-repeat中获得活动链接。

我正在尝试在href="#/promo/{{item.indexOf(item)}}"上设置链接(在我的示例中,我只将其应用于image.html partial - 在预览中,它是第一个拇指 - 带有猴子的图像。)

        <span class="image_container">
          <a href="#/promo/{{item.indexOf(item)}}" title="{{ content.submissionTitle }}"><img ng-src="{{rootDirectory}}{{content.data}}" alt="entry photo"></a>
        </span>

        <span class="description">
          <span class="title"><a href="#/promo/{{item.indexOf(item)}}" title="{{ content.submissionTitle }}">{{ content.submissionTitle }}</a></span>
          <span class="text_field">
            {{ content.submissionText }}
          </span>
        </span>

我做错了什么或有更好的方法。

请告诉我这个

1 个答案:

答案 0 :(得分:1)

检查一下,

<a href="#/promo/{{$index}}" title ...