在单页AngularJS应用程序中使用Bootstrap Modal

时间:2016-07-22 11:52:25

标签: angularjs twitter-bootstrap

我在AungarJS中使用ui.router创建了一个单页应用程序,我希望通过此链接在我的应用程序中集成Bootstrap Modals:

http://angular-ui.github.io/bootstrap/#/getting_started

但到目前为止,我的整合已经严重失败。那是因为链接说在UI路由器的情况下我需要$uibResolve.setResolver('$resolve')配置。但是使用$uibResolve会导致注入错误。

我的问题:如何在我的单页应用程序中将Bootsrap Modals集成到上述链接中?

1 个答案:

答案 0 :(得分:1)

You should inject $uibResolveProvider and call $uibResolveProvider.setResolver('$resolve')

https://docs.angularjs.org/guide/providers

** the service object is not available during the config phase, but the provider instance is (see the unicornLauncherProvider example above).