angularjs – 未捕获错误:无模块:ngRoute

前端之家收集整理的这篇文章主要介绍了angularjs – 未捕获错误:无模块:ngRoute前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用ngRoute模块,但它显示我的错误,因此有额外的文件需要添加使用此模块我搜索但我没有发现像其他模块资源,我们需要单独的文件的cookie我是否为ngroute也如果是的话所以在哪里我能找到这个吗?

错误:-

Uncaught Error: No module: ngRoute 
var app = angular.module('inventoryApp',['ngCookies','ngResource','ngRoute']);

controller.js

app.controller('storesController',function ($rootScope,$scope,$location,$cookies,$routeParams) {

});
你需要一个单独的文件.请参阅:

http://docs.angularjs.org/api/ngRoute

First include angular-route.js in your HTML:

<script src='angular.js'>
<script src='angular-route.js'>
原文链接:https://www.f2er.com/angularjs/141534.html

猜你在找的Angularjs相关文章