0
(function() {
'use strict';
angular.module
('newApp', [ 'ngAnimate',
'ngCookies',
'ngAria',
'ngCookies',
'ngMessages'
])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/main.html',
controller: 'MainCtrl',
controllerAs: 'main'
})
.otherwise({
redirectTo: '/'
});
});
})();
我想安裝使用命令「鮑爾安裝」鮑爾。 它沒有提供,甚至沒有錯誤即將到來。鮑爾安裝不生成我的項目庫
您添加角庫? –
是的,它被添加。 – user3152849
發佈你的完整代碼和HTML視圖 – Sajeetharan