关于this project

我已按照说明中给出的安装过程进行操作,但出现错误:

Error: [$injector:unpr] Unknown provider: 19degrees.ngSweetAlert2Provider <- 19degrees.ngSweetAlert2 <- prkctrl`


我包括了sweetalert.js(原始的sweetalert),sweetalert2(扩展版)和ngsweetalert2(来自此项目)。

我仍然不知道是什么原因?名称可能是个问题?

最佳答案

确保已将模块19degrees.ngSweetAlert2添加到主应用程序中,例如:

angular.module('myApp', ['19degrees.ngSweetAlert2', /* and other modules */]

09-18 23:32