Angular Ui-Router:仅使用ui-sref中的当前状态并删除父状态

时间:2015-07-24 05:39:04

标签: angularjs angular-ui-router

我第一次在我的应用程序中使用AngularJS ui-router。说我的应用程序具有以下结构

   home.html      
   --UserProfile.html      
   ----Password.html 
   ------change passowrd.html
   ------reset password.html

在password.html中,我想创建两个用于重置/更改密码的链接。对于这种情况,我正在编写password.html,如下所示,

<a ui-sref="home.profile.password.changepassword>Change Passowrd</a>
<a ui-sref="home.profile.password.resetpassword>Change Passowrd</a>
<div ui-view></div>

这是在这里定义状态的正确方法吗?我觉得在页面中看到冗长的状态定义感觉很糟糕。我可以自动获取父状态并使用

<a ui-sref="changepassword>Change Passowrd</a>

一些如何使其成功?

0 个答案:

没有答案