码迷,mamicode.com
首页 > 其他好文 > 详细

Angular路由中常见错误描述

时间:2016-11-14 17:33:03      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:conf   redirect   error:   when   other   ack   模块   app   .config   

1、错误描述:Error: [ng:areq] http://errors.AngularJS.org/1.4.8/ng/areq?p0=HelloCtrl&p1=not%20a%20function%2C%20got%20undefined
    at Error (native)
    at http://localhost:8080/web/rs/angular.min.js:1:503
    at qb (http://localhost:8080/web/rs/angular.min.js:1:8403)
    at Qa (http://localhost:8080/web/rs/angular.min.js:1:8490)
    at http://localhost:8080/web/rs/angular.min.js:1:38051
    at w (http://localhost:8080/web/rs/angular.min.js:1:27806)
    at D (http://localhost:8080/web/rs/angular.min.js:1:28162)
    at g (http://localhost:8080/web/rs/angular.min.js:1:25189)
    at g (http://localhost:8080/web/rs/angular.min.js:1:25206)
    at http://localhost:8080/web/rs/angular.min.js:1:24829

Angular中出现这种错误是因为没有引入controller导致的,修改如下:

只需要在模块中加入controller

<script>
    var app=angular.module(myapp,[ngRoute]);
    app.config([$routeProvider,function($routeProvider) {
        $routeProvider.
        when(/home,{
            templateUrl:home.html,
            controller:‘‘
        }).
        when(/cn,{
            templateUrl:cn.html,
            controller:‘‘
        }).
        when(/other,{
            templateUrl:other.html,
            controller:‘‘
        }).
        otherwise({
            redirectTo:/home
        })
    }])
        app.controller(myctrl,function($scope) {
            
        })
</script>

 

Angular路由中常见错误描述

标签:conf   redirect   error:   when   other   ack   模块   app   .config   

原文地址:http://www.cnblogs.com/hejun210/p/6062096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!