瓦坎达 angular $urlRouterProvider stateProvider
wakanda angular $urlRouterProvider stateProvider
在瓦坎达的开头 Angular。我在更改页面时遇到问题。当我打开我的应用程序时,我想到达 new.html 页面。谁能帮帮我?
app.js:
angular.module('starter', ['ionic', 'wakanda'])
.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
if(window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
cordova.plugins.Keyboard.disableScroll(true);
}
if(window.StatusBar) {
StatusBar.styleDefault();
}
});
})
.config(function ($stateProvider, $urlRouterProvider){
$stateProvider
.state('home',{
url:'/home',
templateUrl:'view/home.html',
cache:false
})
.state('new', {
url: '/new',
controller: 'NewController',
templateUrl: 'view/new.html',
cache: false
})
$urlRouterProvider.otherwise('new');
})
.controller('NewController', function($scope, $state) {
console.log("test");
});##
我编辑了我的答案,你能不能试试下面的代码,将 url: 更改为 '/' 以及 $urlRouterProvide[=11= 中的 url ]
.config(function ($stateProvider, $urlRouterProvider){
$stateProvider
.state('home',{
url:'/home',
templateUrl:'view/home.html',
cache:false
})
.state('new', {
url: '/',
controller: 'NewController',
templateUrl: 'view/new.html',
cache: false
})
$urlRouterProvider.otherwise('/');
})
在瓦坎达的开头 Angular。我在更改页面时遇到问题。当我打开我的应用程序时,我想到达 new.html 页面。谁能帮帮我?
app.js:
angular.module('starter', ['ionic', 'wakanda'])
.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
if(window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
cordova.plugins.Keyboard.disableScroll(true);
}
if(window.StatusBar) {
StatusBar.styleDefault();
}
});
})
.config(function ($stateProvider, $urlRouterProvider){
$stateProvider
.state('home',{
url:'/home',
templateUrl:'view/home.html',
cache:false
})
.state('new', {
url: '/new',
controller: 'NewController',
templateUrl: 'view/new.html',
cache: false
})
$urlRouterProvider.otherwise('new');
})
.controller('NewController', function($scope, $state) {
console.log("test");
});##
我编辑了我的答案,你能不能试试下面的代码,将 url: 更改为 '/' 以及 $urlRouterProvide[=11= 中的 url ]
.config(function ($stateProvider, $urlRouterProvider){
$stateProvider
.state('home',{
url:'/home',
templateUrl:'view/home.html',
cache:false
})
.state('new', {
url: '/',
controller: 'NewController',
templateUrl: 'view/new.html',
cache: false
})
$urlRouterProvider.otherwise('/');
})