sencha touch routes(路由) 传递中文参数



其中6个参数依次是:商户编号/公众账号/微信号/校验号/服务类型/商户名称

因为最后一个参数是中文,所以普通写法获取不到中文参数,也不能激活路由.

        routes: {
            'eatery/:mCode/:pAccount/:mSignal/:cNo/:tService/:bName': 'showEatery'
        }

 

经过一番试验,以下写法可以获取到中文参数并且激活路由

复制代码
        routes: {
            'eatery/:mCode/:pAccount/:mSignal/:cNo/:tService/:bName': {
                action: 'showEatery',
                conditions: {
                    ':bName': '.*'
                }
            }
        }
复制代码

 

你可能感兴趣的:(sencha touch routes(路由) 传递中文参数)