离子标签没有正确显示

时间:2016-03-30 08:08:24

标签: ionic-framework

我使用以下代码跳转到" account"如果用户已登录:

.controller('LoginCtrl', function($scope) {
    if (is_login) {
        $state.go('account');
    }
})

但标题涵盖了内容。

But the content was covered by the header

1 个答案:

答案 0 :(得分:0)

如果您使用的是<ion-header-bar>而不是<ion-nav-bar>,则可能需要使用class="has-header",因为离子不会自动排列离子内容标记内容。另外,不要忘记在javascript代码中初始化ngApp。另外,正如我在javascript错误之前所遇到的那样也可能导致问题,请检查错误。以上是一个示例:http://jsbin.com/pagacohovohe/1/edit?html,js,output