我尝试使用来自http://ngmodules.org/modules/sticky-headers的粘性标头指令 但它似乎与使用ng-view的组合无关。
根据需要使用fsm指令时,我得到一个空视图:
angular.module('dashboard', ['fsm']).controller('installerController',
[ '$scope', '$filter','$http','$log', '$location','$compile',
'$routeParams',
function($scope, $filter, $http, $log, $location, $compile, $routeParams)
当不包括fsm指令时,一切正常:
angular.module('dashboard').controller('installerController',
[ '$scope', '$filter','$http','$log', '$location','$compile',
'$routeParams',
function($scope, $filter, $http, $log, $location, $compile, $routeParams)
非常感谢您的帮助。 感谢。
答案 0 :(得分:0)
方法angular.module(string)
和angular.module(string, array[])
之间的区别在于第一个加载特定模块,第二个创建一个新的角度模块
确保您只创建一次模块