报错:
Module 'App' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

解决办法:

angular.module('bookxApp').controller(...) ; 少了依赖 [ ] 双括号

改成这样就行了

angular.module('bookxApp' , [ ] ).controller(...) ; 少了依赖 [ ] 双括号

相关文章:

  • 2021-11-28
  • 2021-11-09
  • 2021-10-03
  • 2021-04-18
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-29
  • 2022-02-14
  • 2022-12-23
  • 2021-04-16
  • 2021-12-31
  • 2022-12-23
  • 2021-12-21
相关资源
相似解决方案