angular.js - angular js 報錯 [$injector:modulerr] 模塊注入錯誤
問題描述
html
<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Document</title> <script src='angular.min.js'></script> <script src='angular-route.min.js'></script> <script src='app.js'></script> <script src='controller.js'></script> <link rel='stylesheet' href='semantic.min.css'> <link rel='stylesheet' href='index.css'></head><body ng-app='myapp'> <p class='container'><p class='head'> <p class='home'></p> <p class='user-info'><!--<button onclick='alert()'></button>--> </p></p><p class='ui secondary vertical pointing menu leftbar'> <a href='13935.html#/user'> User</a> <a href='13935.html#/comments'> Comments</a> <a href='13935.html#/onlineclasses'> Online Classes</a> <a href='13935.html#/preschedule'> PreSchedule</a> <a href='13935.html#/fireman'> Fireman</a> <a href='13935.html#/qiangke'> 搶課列表</a></p><p class='content'> <p class='content-head'><p class='ui secondary pointing menu'> <a href='13935.html#/user'> Students </a> <a class='item'> Families </a></p> </p> <p ng-view></p></p> </p></body></html>
app.js
var app = angular.module(’myapp’, [’ngRoute’])app.config([’$routeProvider’, function ($routeProvider) { $routeProvider.when(’/user’, {templateUrl: ’user.html’,controller: ’user’ }) $routeProvider.when(’/conmments’, {template: ’這是用戶’ }) $routeProvider.when(’/onlineclasses’, {template: ’這是其他’ }) $routeProvider.when(’/preschedule’, {template: ’這是用戶’ }) $routeProvider.when(’/fireman’, {template: ’這是其他’ }) $routeProvider.when(’/qiangke’, {template: ’這是用戶’ }) $routeProvider.when({redirectTo: ’/user’ });}])
user.html
<p ng-controller='user'> <p class='searchbox'><select ng-options='x for x in gender'></select><select ng-options='x for x in age'></select><select ng-options='x for x in province'></select> </p></p>
controller.js
app.controller(’user’, function ($scope) { $scope.gender = [’-gender-’, ’female’, ’male’]; $scope.age = [’-age-’, ’ < 5 ’, ’6 ’, ’7 ’, ’8 ’, ’ > 8 ’]; $scope.province = [’-province-’,’’]})
錯誤
問題解答
回答1:
代碼里沒有引入angular-route.js
回答2:
http://www.cgvv.com.cn/articl...
看一下上面的教程吧,然后一般這么寫
angular.module(’myapp’, [’ngRoute’]).config([ ’$routeProvider’, function ($routeProvider) {$routeProvider .when(’/home’, {templateUrl: ’home.html’,controller: ’HomeController’ }) .otherwise(’/home’) }])回答3:
app模塊找不到,看看注入什么的
相關文章:
1. 為什么我ping不通我的docker容器呢???2. android - webview 自定義加載進度條3. 將SQLServer數據同步到MySQL 用什么方法?4. 什么操作會導致mysql的binlog_size快速變大?5. numpy - python [:,2][:,None]是什么意思6. linux - openSUSE 上,如何使用 QQ?7. javascript - 微信音樂分享8. mysql優化 - 如何解決 MySQL 導入約 2G 的 SQL 報錯?9. javascript - vue引入微信jssdk 配置在哪個生命周期調取接口配置?10. javascript - 微信小程序限制加載個數
