angular.module('dodgie', []).config(function($routeProvider){
$routeProvider.when('/home', {template:'/partials/home.html', controller:dodgieCtrl }).
otherwise({redirectTo:'/home'});
});
function dodgieCtrl($scope, $location){
$scope.doSearch = function(){
if ( !$scope.newTodo.length ) {
return;
}
};
};
内容:
<div id="content" ng-view></div>
而是:
<span class="ng-scope">/partials/home.html</span>
为什么我的部分不被渲染?
答案 0 :(得分:4)
看起来像拼写错误templateUrl
而不是template
:
angular.module('dodgie', []).config(function($routeProvider){
$routeProvider.when('/home', {templateUrl:'/partials/home.html', controller:dodgieCtrl }).
otherwise({redirectTo:'/home'});
});
取自docs:
答案 1 :(得分:1)
如果您打算指定网址,请使用'templateUrl'而不是'template'。