如果我禁用noty服务,则启用“Show Toast”按钮ng-click事件,当我打算使用noty服务时,它会停止我所有的ng-click事件。
noty服务实现会找到“tempService.js”,它基本上是一个实现烤面包机通知消息。
以下链接中的示例
答案 0 :(得分:0)
我修复了您的示例,请查看here。
问题与您使用Angular模块的方式有关,请阅读this section of the docs。
基本上我将Angular模块声明放在一个名为bootstrapper.js
的单独文件中:
angular.module('main', ['toaster']);
在第三方图书馆之后立即加载:
<script src="bootstrapper.js"></script>
以这种方式引用(检索,未创建)所有其他文件中的Angular模块:
angular.module('main')