search

Home  >  Q&A  >  body text

angular.js - ui-router中ui-view问题

base.html

<p ng-include="'topbar.html'"></p>
<p class='content'>
    <p ng-include="'sidebar.html'"></p>
    <p ui-view></p>
</p>

现在所有的内容都会被插入这个 ui-view, 登录,注册,404也是, 那我如何能让登录,注册,404不显示在这个ui-view中,而是整个页面只显示登录,只显示注册,只显示404

黄舟黄舟2739 days ago565

reply all(1)I'll reply

  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-15 16:58:48

    Have to giveui-view命名。你这里不命名,是相当于默认去渲染这个ui-view.
    Please refer to the official sample

                '': {
                    ...
                },

    Either it is named with this ''empty string as the key.

    reply
    0
  • Cancelreply