我使用yeoman angularjs-cordova
创建了一个apk我在这里只提到了特定的需求文件夹结构 模块
核心 - >意见 - > home.html的
客户
- >配置 - > route.js
- >意见 - > dashboard.html
在home.html中,有一个链接<a ui-sref="dashboard">User Dashboard</a>
。
我的客户模块的route.js是
'use strict';
//Setting up route
angular.module('customer').config(['$stateProvider',
function($stateProvider) {
// Customer state routing
$stateProvider.
state('dashboard', {
url: '/dashboard',
views: {
'@':{
templateUrl: 'app/modules/customer/views/dashboard.html',
controller: 'CustomerController'
},
'left@dashboard':{
templateUrl: 'app/modules/customer/common/left.html',
controller: 'CommonController'
},
'header@dashboard':{
templateUrl: 'app/modules/customer/common/header.html',
controller: 'CommonController'
},
},
})
}
]);
ui-sref在网络浏览器中正常运行但在Android设备中ui-sref无法正常工作