PhoneGap中文网

 找回密码
 立即注册
查看: 13440|回复: 1
打印 上一主题 下一主题

ionic项目iphone真机运行,页面跳转优势连跳两次

[复制链接]

1

主题

1

帖子

9

积分

新手上路

Rank: 1

积分
9
跳转到指定楼层
楼主
发表于 2015-12-22 12:56:33 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
路由配置:
/**
* Created by xumengliang on 15/12/14.
* 路由配置文件
*/
angular.module('app.config',[])
.config(function($stateProvider,$urlRouterProvider){
        $stateProvider
            .state('home',{
                url:'/home',
                views:{
                    'shop-content':
                    {
                        templateUrl:"home.html"
                    }
                }
            })
            .state('home.health',{   //健康
                url:'/health',
                views:{
                    'health':
                    {
                        templateUrl:"product_list.html",
                        controller:'healthCtrl'
                    }
                },


            })

            .state('home.life',{      //生活
                url:'/life',
                views:{
                    'health':
                    {
                        templateUrl:"product_list.html",
                        controller:"lifeCtrl"
                    }
                },

            })

            .state('home.emotion',{     //情感
                url:'/emotion',
                views:{
                    'health':
                    {
                        templateUrl:"product_list.html",
                        controller:"emotionCtrl"
                    }
                },

            })
            .state('home.intrest',{       //兴趣
                url:'/intrest',
                views:{
                    'health':
                    {
                        templateUrl:"product_list.html",
                        controller:"intrestCtrl"
                    }
                },


            })


            .state('productDetail',{
                url:'/productDetail/{productId}',
                //cache:false,
                views:{
                    'shop-content':
                    {
                        templateUrl:"productDetail.html"
                    }
                }
            })

            .state('order',{
                url:'/order',
                views:{
                    'shop-content':
                    {
                        templateUrl:"order.html"
                    }
                }
            })
            .state('editAddress',{
                url:'/edit_address/{id}',
                views:{
                    'shop-content':
                    {
                        templateUrl:"edit_address.html"
                    }
                }
            })
            .state('addAddress',{
                url:'/add_address',
                views:{
                    'shop-content':
                    {
                        templateUrl:"edit_address.html"
                    }
                }
            })
            .state('editAddressDetail',{
                url:'/edit_address_detail',
                views:{
                    'shop-content':
                    {
                        templateUrl:"edit_address_detail.html"
                    }
                }
            })
            .state('managerAddress',{
                url:'/manager_address',
                views:{
                    'shop-content':
                    {
                        templateUrl:"manager_address.html"
                    }
                }
            })
            .state('selectAddress',{
                url:'/select_address',
                views:{
                    'shop-content':
                    {
                        templateUrl:"select_address.html"
                    }
                }
            });
         $urlRouterProvider.otherwise("/home");
    })
    .controller ("appCtrl", function($scope,$ionicNavBarDelegate) {

    $scope.$on('to-parent', function (event,msg) {
        $scope[msg['key']] = msg['value'];
    })

});

页面跳转使用$state.go(),或则标签里面 href属性加路径。项目在电脑上浏览器上运行很正常,但是放到iphone6上运行,由时候点击页面跳转,会一下子请求两次页面路径。导致页面会连闪两下。请问各位大神,由有遇到过这个问题的么。
回复

使用道具 举报

11

主题

529

帖子

1418

积分

金牌会员

Rank: 6Rank: 6

积分
1418
沙发
发表于 2015-12-22 18:37:48 | 只看该作者
用1.1版本的ionic试试,最新的好像也不好使,就是用1.1.1
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

站长推荐 上一条 /1 下一条

ionic4视频教程

Archiver|手机版|小黑屋| PhoneGap中文网 ( 京ICP备13027796号-1 )  

GMT+8, 2024-11-24 04:26 , Processed in 0.041820 second(s), 33 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表