Angular js编辑页面视图

时间:2018-03-17 05:01:37

标签: angularjs

我正在使用angularjs 1这是我的回复

<table class="table myCustomTable">
<thead>
  <tr>
    <th>Name</th>
    <th>email</th>
  </tr>
</thead>
<tbody>
    <tr ng-repeat="user in data | filter: searchKeyword">
    <td><a href="#/user/{{user.id}}">{{user.name}}</a></td>
    <td>{{user.emaik}}</td>
  </tr>

</tbody>
</table>

回复很好,但我不知道如何创建和重定向来编辑页面视图

此外,我想在编辑页面视图中获取所有详细信息

我不知道如何解决这个问题

1 个答案:

答案 0 :(得分:1)

在使用路由的AngularJS中,您可以从一个页面遍历到另一个页面。路由提供商 - $route或州提供商 - $state实现最简单的方法。 通过使用$routeParams$stateParams,您可以将参数从一个页面传递到另一个页面。