如何在index.js中调用$ .notify - mvc应用程序中的angular js

时间:2015-05-24 05:45:44

标签: javascript jquery asp.net-mvc angularjs twitter-bootstrap

我正在使用github link

中的custom notify js

添加了两个文件bootstrap-notify.jsbootstrap-notify.min.js

现在在index.cshtml中,如果我直接使用以下代码,那就是完美的

<script type="text/javascript">
    $.notify({
        // options
        message: 'Hello World'
    }, {
        // settings
        type: 'danger',delay:1000,timer:1000
    });
</script>

但我尝试在index.js中使用它,如下所示,它赢了

app.controller('MyConfigController', function ($scope, $http) {
   $scope.MyConfigSelected = []; 
   //added same code here
   $.notify({
        // options
        message: 'Hello World'
    }, {
        // settings
        type: 'danger',delay:1000,timer:1000
    });
}); 
  

如何在index.js中调用相同的$ .notify()方法,这在bootstrap-notify.js文件中,为什么无法直接调用?

我尝试了以下但没有工作

 //MyConfigController.$inject =['notify'];
    //      $.notify({
    //    // options
    //        message: 'Hello World'
    //    }, {
    //        // settings
    //        type: 'danger', delay: 1000, timer: 1000
    //    });

Even not working on button click js function :( getting error : Uncaught TypeError: $.notify is not a function

0 个答案:

没有答案