我在两个单独的文件中有两个模块,如下所示:
第一个.js
var app = angular.module('first',['ngGrid']);
app.controller('firstTest',function($scope))
{
...
});
第二个.js
var app = angular.module('second',['ngGrid']);
app.controller('secondTest',function($scope))
{
...
});
我现在想在导航类型视图中再次使用这两个模块,如下所示:
tabs.js
var app = angular.module('myTabs',['first','second']);
$scope.tabs = [
{title: "first", content:first.firstTest},
{title: "second", content:second.secondTest},
];
$scope.navType='pills';
});
发生的事情是我收到以下错误:
unknown provider firstProvider <- first
所以我的问题是
1)这是进行选项卡式导航的正确方法2)处理和模块
注入的正确技术是什么?first
second