Table Angular js中的HTML链接

时间:2015-05-22 15:40:18

标签: html angularjs

我正在使用Angular js; 在我的视图模板中,我有一个表 我希望我的表中的每一行都由我的模型中的元素填充为另一页的链接。 我尝试了注释的代码行,但它不起作用!

感谢您的帮助! 干杯!

<section data-ng-controller="AllsController" data-ng-init="find()">
<div class="page-header">
    <h1>Alls</h1>
</div>

<div class="list-group">

    <table class="table table-striped table-bordered">
        <thead>
            <tr>
                <th>Created</th>
                <th>User</th>
                <th>Name</th>
                <th>Color</th>
            </tr>
        </thead>
        <tbody>
                <tr data-ng-repeat="all in alls">
                <!-- <a data-ng-href="#!/alls/{{all._id}}" > -->

                <td data-ng-bind="all.created | date:'medium'"></td>
                <td data-ng-bind="all.user.displayName"></td>
                <td data-ng-bind="all.name"></td>
                <td data-ng-bind="all.color"></td>

                <!-- </a> -->
            </tr>
        </tbody>
    </table>
</div>

1 个答案:

答案 0 :(得分:0)

你可以做点什么 <tr ng-click="onClick()">在你的onClick函数中你可以编写你的逻辑。如果您想重定向到某个页面,可以使用angularjs的$ location服务。