我在与eoman一起使用angularjs。我正在尝试将ngRoute添加到我的项目中。我已经安装了凉亭
“ angular-route”:“〜1.4.1”,
当我尝试将其加载到app.js中时,出现此错误
angular.module('myApp', ['ngAnimate', 'ngCookies', 'ngResource', 'ui.router', 'ngSanitize', 'ngTouch','ngRoute'])
错误:[$ injector:modulerr]由于以下原因,无法实例化模块myApp:
[$ injector:modulerr]由于以下原因,无法实例化模块ngRoute:
[$ injector:nomod]模块'ngRoute'不可用!你要么
错误拼写了模块名称或忘记了加载它。如果注册一个
模块确保您将依赖项指定为第二个
论据。
最佳答案
确保除了包括angular.js之外,还包括:<script type="text/javascript" src="path/to/angular-route.js"></script>
有关安装说明,请参见ngRoute API。