2014-11-22 75 views
1

“自动”回功能和“牢记历史”的功能是相当不错的。离子标签的自动导航

但是,如果我有一个直接进入另一个选项卡中的第二层页面上的链接,我将永远无法看到第二个选项卡中的第一层,由于“牢记历史”功能。

这里是codepenproject。

http://codepen.io/wildcolor/pen/MYYLVG 

<ion-nav-bar class="nav-title-slide-ios7 bar-positive"> 
    <ion-nav-back-button class="button-icon ion-arrow-left-c"> 
    </ion-nav-back-button> 
</ion-nav-bar> 

<ion-nav-view animation="slide-left-right"></ion-nav-view> 


<script id="tabs.html" type="text/ng-template"> 
    <ion-tabs class="tabs-icon-top tabs-positive"> 

    <ion-tab title="Home" icon="ion-home" href="#/tab/home"> 
     <ion-nav-view name="home-tab"></ion-nav-view> 
    </ion-tab> 

    <ion-tab title="About" icon="ion-ios7-information" href="#/tab/about"> 
     <ion-nav-view name="about-tab"></ion-nav-view> 
    </ion-tab> 

    <ion-tab title="Contact" icon="ion-ios7-world" ui-sref="tabs.contact"> 
     <ion-nav-view name="contact-tab"></ion-nav-view> 
    </ion-tab> 

    </ion-tabs> 
</script> 

<script id="home.html" type="text/ng-template"> 
    <ion-view title="Home"> 
    <ion-content class="padding"> 
     <p>Example of Ionic tabs. Navigate to each tab, and 
     navigate to child views of each tab and notice how 
     each tab has its own navigation history.</p> 
     <p> 
     <a class="button icon icon-right ion-chevron-right" ui-sref="tabs.navstack">about navstack</a> 
     </p> 
     <p> 
     <a class="button icon icon-right ion-chevron-right" href="#/tab/facts">Scientific Facts</a> 
     </p> 
     <p> 
     <a class="button icon icon-right ion-chevron-right" ng-click="getClicky()">get clicky</a> 
     </p> 
    </ion-content> 
    </ion-view> 
</script> 

<script id="facts.html" type="text/ng-template"> 
    <ion-view title="Facts" class="padding"> 
    <ion-content> 
     <p>Banging your head against a wall uses 150 calories an hour.</p> 
     <p>Dogs have four toes on their hind feet, and five on their front feet.</p> 
     <p>The ant can lift 50 times its own weight, can pull 30 times its own weight and always falls over on its right side when intoxicated.</p> 
     <p>A cockroach will live nine days without it's head, before it starves to death.</p> 
     <p>Polar bears are left handed.</p> 
     <p> 
     <a class="button icon ion-home" href="#/tab/home"> Home</a> 
     <a class="button icon icon-right ion-chevron-right" href="#/tab/facts2">More Facts</a> 
     </p> 
    </ion-content> 
    </ion-view> 
</script> 

<script id="facts2.html" type="text/ng-template"> 
    <ion-view title="Also Factual"> 
    <ion-content class="padding"> 
     <p>111,111,111 x 111,111,111 = 12,345,678,987,654,321</p> 
     <p>1 in every 4 Americans has appeared on T.V.</p> 
     <p>11% of the world is left-handed.</p> 
     <p>1 in 8 Americans has worked at a McDonalds restaurant.</p> 
     <p>$283,200 is the absolute highest amount of money you can win on Jeopardy.</p> 
     <p>101 Dalmatians, Peter Pan, Lady and the Tramp, and Mulan are the only Disney cartoons where both parents are present and don't die throughout the movie.</p> 
     <p> 
     <a class="button icon ion-home" href="#/tab/home"> Home</a> 
     <a class="button icon ion-chevron-left" href="#/tab/facts"> Scientific Facts</a> 
     </p> 
    </ion-content> 
    </ion-view> 
</script> 

<script id="about.html" type="text/ng-template"> 
    <ion-view title="About"> 
    <ion-content class="padding"> 
     <h3>Create hybrid mobile apps with the web technologies you love.</h3> 
     <p>Free and open source, Ionic offers a library of mobile-optimized HTML, CSS and JS components for building highly interactive apps.</p> 
     <p>Built with Sass and optimized for AngularJS.</p> 
     <p> 
     <a class="button icon icon-right ion-chevron-right" href="#/tab/navstack">Tabs Nav Stack</a> 
     </p> 
    </ion-content> 
    </ion-view> 
</script> 

<script id="nav-stack.html" type="text/ng-template"> 
    <ion-view title="Tab Nav Stack"> 
    <ion-content class="padding"> 
     <p><img src="http://ionicframework.com/img/diagrams/tabs-nav-stack.png" style="width:100%"></p> 
    </ion-content> 
    </ion-view> 
</script> 

<script id="contact.html" type="text/ng-template"> 
    <ion-view title="Contact"> 
    <ion-content> 
     <p>@IonicFramework</p> 
     <p>@DriftyCo</p> 
    </ion-content> 
    </ion-view> 
</script> 

如果你按下按钮 '关于navstack',你会看到 '简介' 标签的第二层。由于您直接进入“约”选项卡的第二层,因此您将永远无法看到“约”选项卡的第一层。

要查看“关于”选项卡的第一层,按“F5”刷新浏览并按下底栏的中间部分的“关于”选项卡。

,我们如何解决这个问题?

回答

0

可能这将帮助你......

你可以把

<a class="button icon icon-right ion-chevron-right" ui-sref="tabs.about">about navstack</a> 

所以它会重定向到第二个选项卡中的第一层比从那里你可以去为制表符导航堆栈...

+0

嗨。谢谢回复。但这不是解决方案。我从离子论坛得到答案。链接http://forum.ionicframework.com/t/ionic-tabs-auto-navigation/13052/16 – wildcolor 2014-12-02 12:05:39