av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁技術文章
文章詳情頁

angular.js - 已實現的angularjs項目用requirejs進行模塊化時遇到問題

瀏覽:84日期:2024-10-06 16:17:14

問題描述

其實就是對todoMVC項目用requirejs進行模塊化。原本的angularjs是分別在controller、directive、service中分別定義了一個模塊來代表這三者。下面是directive:todoFocus.js

(function () { ’use strict’ angular.module(’todoFocus’,[]).directive(’todoFocus’,function ($timeout){return function (scope,element,attrs){ scope.$watch(attrs.todoFocus,function (newVal){if(newVal){ $timeout(function(){element[0].focus(); },0,false);} })} })})()

上面就是一個directive。之后在app.js中

(function () { ’use strict’; angular.module(’todomvc’, [’todoCtrl’, ’todoFocus’, ’todoStorage’]);})();

我用requirejs模塊化之后directive變成了這樣:

(function () { ’use strict’ define([’angular’],function (angular) {angular.module(’todoFocus’,[]).directive(’todoFocus’,function ($timeout){return function (scope,element,attrs){ scope.$watch(attrs.todoFocus,function (newVal){if(newVal){ $timeout(function(){element[0].focus(); },0,false);} })} })return ’todoFocus’; })})()

然后app.js變成了這樣:

(function () { ’use strict’; require([’angular’],function (angular) {require([ ’controllers/todoCtrl’, ’directives/todoFocus’, ’services/todoStorage’ ],function (todoCtrl,todoFocus,todoStorage) {angular.module(’todomvc’,[todoCtrl,todoFocus,todoStorage]);angular.bootstrap(document, [’todomvc’]); }) })})();

之后打開網頁發現所有的js文件都加載出來了,但是并不能實現效果。。angular.js - 已實現的angularjs項目用requirejs進行模塊化時遇到問題

angular.js - 已實現的angularjs項目用requirejs進行模塊化時遇到問題

是不是app.js不能這么寫。沒怎么用過requireJS/(ㄒoㄒ)/~~

貼一下我的文件路徑angular.js - 已實現的angularjs項目用requirejs進行模塊化時遇到問題

下面是我的main.js

(function (win) { ’use strict’; require.config({paths: { angular: ’../node_modules/angular/angular’},shim: { //專門用來配置不兼容的模塊 angular: { exports: ’angular’ //輸出變量名,表示這個模塊外部調用時的名稱 }},deps: [’app’] //deps數組,表示該模塊依賴app模塊,所以要先加載app模塊});})(window)

感覺我的路徑沒啥問題呀/(ㄒoㄒ)/~~

問題解答

回答1:

模塊依賴注入錯誤了,檢查下引用路徑

相關文章:
主站蜘蛛池模板: 亚洲精品一区二区在线 | 国产一区久久久 | 久久99精品久久 | 国产精品成人国产乱一区 | 狠狠热视频 | 2022精品国偷自产免费观看 | 色狠狠一区 | 91精品久久 | 日韩和的一区二区 | 99久久夜色精品国产亚洲96 | 国产丝袜一区二区三区免费视频 | 国产精品免费一区二区三区四区 | 亚洲欧美日韩中文在线 | 国产精品福利视频 | 亚洲精品免费在线 | 四虎影 | 国产91久久久久久久免费 | 亚洲丝袜天堂 | 一本色道久久综合亚洲精品高清 | 欧美一级二级三级视频 | 国产欧美一区二区三区久久手机版 | 麻豆久久 | 国产精品视频一区二区三区 | 日韩在线91 | 欧美片网站免费 | 高清黄色毛片 | 日日操夜夜操天天操 | 国产精品av久久久久久久久久 | 欧美午夜在线 | 国产aa| 福利视频一区 | 熟女毛片| 国产精品久久久久久婷婷天堂 | 亚洲午夜精品一区二区三区 | 高清视频一区 | 成人精品一区二区 | 精品国产乱码一区二区三区 | 亚洲国产激情 | 日韩中文字幕一区 | 免费看一区二区三区 | 国产精品美女久久久久久免费 |