如果我想将['textAngular']
和['ngDropdowns ']
添加到我的应用中。我怎样才能做到这一点?我试过这个,但它不起作用:
var app = angular.module('myApp', ['textAngular'], ['ngDropdowns ']);
答案 0 :(得分:1)
如果加载了这些模块的源代码,这应该可以解决问题
var app = angular.module('myApp', ['textAngular','ngDropdowns ']);