html
app.js
user.html
controller.js
错误
闭关修行中......
代码里没有引入angular-route.js
http://www.tuicool.com/articl...
看一下上面的教程吧,然后一般这么写
angular.module('myapp', ['ngRoute']) .config([ '$routeProvider', function ($routeProvider) { $routeProvider .when('/home', { templateUrl: 'home.html', controller: 'HomeController' }) .otherwise('/home') } ])
app模块找不到,看看注入什么的
代码里没有引入angular-route.js
http://www.tuicool.com/articl...
看一下上面的教程吧,然后一般这么写
app模块找不到,看看注入什么的