Maison > Questions et réponses > le corps du texte
初学 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 么
黄舟2017-05-15 17:04:36
Ayez simplement un <p ui-view></p> et configurez quand accéder à la page 404 dans le routage.
習慣沉默2017-05-15 17:04:36
Page principale
<body ng-app>
<p ui-view="main></p>
// js
</body>
Configurez l'itinéraire correspondant pour le saut de page