我写了一个简单的Angular-js应用程序,如下所示:
angular.module("myApp",['ngRoute'])
.config(['$routeProvider',function($routeProvider){
$routeProvider
.when('/',{
name:'route1',
controller:'Route1Ctrl',
template:'partials/route1.tpl.html'
})
.otherwise({redirectTo:'/'});
}])
.controller('Route1Ctrl',['$scope',function($scope){
}});
应用无法加载,我在Chrome控制台框中看到的唯一错误消息是:
Uncaught objet
我该怎么做才能获得更多可用的错误消息?
答案 0 :(得分:0)
而不是模板:您必须使用 templateUrl