有问题的ng-href我可以使用AngularJS 1.2

时间:2016-01-07 12:53:35

标签: html angularjs

我有一个表中的数据值的问题,我试图将数据包装在锚标签中,以便它可以是一个可下载的链接,我试图使用ng-href,但我可以使用目标。有更简单的方法吗?我是在浏览器上正常显示的数据,并使用点击它来下载图像。但它也显示了一个丑陋的锚标记:/这是我的代码,正常的href 我也试过使用它,这是angular.js link behaviour - disable deep linking for specific URLs

的答案
<td><a target="_self" href="//tomcmmsweb.pca.com/DocumentLibrary/Download/{{item.documentId}}">{{item.jobNumber}}</a></td>

但上面仍然没有奏效。即时通讯使用angularJS 1.2.16,我的想法已经不多了,而且我不是很多使用angularJS的专家。我真的很欣赏一些知识。

<table class="table table-striped table table-hover">
    <thead>
    <tr>
        <th>Project Manager</th>
        <th>Job Number</th>
        <th>Description</th>
        <th>Amount</th>
    </tr>
    </thead>
    <tbody>
    <tr ng-repeat="item in counce">
        <td><a href="//coucmmsweb.pca.com/DocumentLibrary/Download/{{item.documentId}}" target="_blank">{{item.projectManager}}</a></td>
        <td><a href="//coucmmsweb.pca.com/DocumentLibrary/Download/{{item.documentId}}" target="_blank">{{item.jobNumber}}</a></td>
        <td><a href="//coucmmsweb.pca.com/DocumentLibrary/Download/{{item.documentId}}" target="_blank">{{item.description}}</a></td>
        <td><a href="//coucmmsweb.pca.com/DocumentLibrary/Download/{{item.documentId}}" target="_blank">{{item.totalAmount*1000 | currency}}</a></td>
    </tr>

    </tbody>
</table>

enter image description here

0 个答案:

没有答案