suchen

Heim  >  Fragen und Antworten  >  Hauptteil

angular.js - angularjs如何使用ui-view实现404登陆注册页面呢?

初学 angularjs 1

在 index.html 下面写

// head css
<body ng-app>
    <p ui-view='nav'></p>
    <p ui-view='sidebar'></p>
    <p ui-view='content'></p>
    // js
</body>

如果登陆进去后,这个页面可以这些。但是比如登陆,404页面呢,我不需要 nav 或者 sidebar

难道我在这三个 ui-view 上面套一个,或者 body 上面写一个?
还是我用个变量,ng-if 来隐藏掉 nav 或者 sidebar ??
还是我撇开index.html,单独来一个404.html register.html,但是这个应用不是 SPA 么

为情所困为情所困2799 Tage vor562

Antworte allen(2)Ich werde antworten

  • 黄舟

    黄舟2017-05-15 17:04:36

    有一个 <p ui-view></p>就行,在路由里配置什么时候去404页面。

    Antwort
    0
  • 習慣沉默

    習慣沉默2017-05-15 17:04:36

    主页面

    <body ng-app>
        <p ui-view="main></p>
        // js
    </body>

    配置相应的路由进行页面跳转

    Antwort
    0
  • StornierenAntwort