2017-01-18 72 views
2

我使用的庫角minicolorshttp://labs.abeautifulsite.net/jquery-minicolors/)以成角度​​的控制器:使用茉莉來測試jQuery庫

angular.element("myelement").minicolors({ 
    position: 'top left', 
    change: function() { 
     //code to execute on color change 
    } 
}) 

然而,測試該控制器時,噶引發錯誤:

TypeError: undefined is not a constructor (evaluating 'angular.element("myelement").minicolors({ position: 'top left', change: function() { //code to execute on color change } })'

我的猜測是,它不能識別庫角微型
但是,在導航儀上,一切正常。

我真的很歡迎任何幫助,謝謝!

回答

0

好了,好像我的測試不知道minicolors,因爲我忘了添加另一個依賴jquery.minicolors.js在我的人緣配置:

files: [ 
    'src/main/resources/static/js/lib/angular-minicolors.js', 
    'src/main/resources/static/js/lib/jquery.minicolors.js', 
    ... 
]