以下是我为ngRoute导航编写的代码
var app = angular.module('myApp', ['ngRoute']);
app.config(['$routeProvider',
function($routeProvider) {
$routeProvider.
when('/a1', {
templateUrl: 'basic.html',
controller: 'c1'
});
}]);
app.controller('c1', function($scope) {
$scope.hello = "BOOOO!";
});
使用此代码对basic.html进行导航。
我在几个链接中尝试过解决方案,但那不起作用。
我这背后的全部意图是执行参数化导航,就像从第一页开始我将传递id,在第二页上我将显示与之对应的数据。