angular.js - angularjs如何获取id达到删除的目的呢
仅有的幸福
仅有的幸福 2017-05-15 17:00:42
0
2
615
<p style="width: 450px;float: left;margin-left: 50px">

    <table>
        <!-- 这里以name为排序标准  -->
        <tr ng-repeat="x in users | orderBy : 'name'">

            <!-- $index显示序列号,从1开始  -->
            <td>{{ $index + 1 }}</td>
            <td>{{ x.id }}</td>

            <!-- 把英文转为大写  -->
            <td>{{ x.name |uppercase }}</td>
            <td>{{ x.password }}</td>
            <td>{{ x.email }}</td>
            <td><input type="button" value="编辑" onclick="editUser()"/></td>
            <td><input type="button" value="删除" onclick="deleteUser(x.id)"/></td>
        </tr>
    </table>

这里该怎么获取id呢
onclick="deleteUser(x.id)"
这样是不行的,然后加个{{}}也是不行的。

刚刚开angularjs有点乱....

获取之后,如何调用控制器的方法,

这是在controller里面的方法,如此调用好像不行...

    function deleteUser(userID) {

        alert(userID);

    }
仅有的幸福
仅有的幸福

全部回复(2)
伊谢尔伦

为什么会用原生的onclick?你应该用angular 的ng-click

PHPzhong

已经解决:

用ng-click,就能调用。
调用函数是:
$scope.deleteUser = function (userID) {

    console.log(userID);
    alert(userID);

}
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板