2013-03-18 101 views
2

現在一切都非常「新鮮」。我有角度種子項目,我正在使用異步索引頁面。當我添加角引導的參考時它爆炸了。當我不加載異步樣式時,不會發生這種情況。異步加載AngularUI引導

如何在$ script loader中使用AngularUI引導程序?

我得到的錯誤是:

Uncaught TypeError: Object #<Object> has no method 'controller' ui-bootstrap-0.2.0.js:9 
(anonymous function) ui-bootstrap-0.2.0.js:9 

Uncaught Error: No module: ui.bootstrap.collapse new-job-order:18 
(anonymous function) new-job-order:18 
d new-job-order:18 
(anonymous function) new-job-order:18 
(anonymous function) angular.js:2754 
forEach angular.js:133 
loadModules angular.js:2750 
(anonymous function) angular.js:2755 
forEach angular.js:133 
loadModules angular.js:2750 
(anonymous function) angular.js:2755 
forEach angular.js:133 
loadModules angular.js:2750 
(anonymous function) angular.js:2755 
forEach angular.js:133 
loadModules angular.js:2750 
createInjector angular.js:2692 
bootstrap angular.js:959 
(anonymous function) new-job-order:45 
o new-job-order:29 
e.onload.e.onerror.e.(anonymous function) new-job-order:29 

更新

我的代碼實際上只是種模板,使用索引async.html文件。然後我添加(或試圖)bootstrap-ui。相關配件有:

<script> 
    // include angular loader, which allows the files to load in any order 
    /* 
    AngularJS v1.0.0rc1 
    (c) 2010-2012 AngularJS http://angularjs.org 
    License: MIT 
    */ 
    'use strict';(function(i){function d(c,a,e){return c[a]||(c[a]=e())}return d(d(i,"angular",Object),"module",function(){var c={};return function(a,e,f){e&&c.hasOwnProperty(a)&&(c[a]=null);return d(c,a,function(){function b(a,b,d){return function(){c[d||"push"]([a,b,arguments]);return g}}if(!e)throw Error("No module: "+a);var c=[],d=[],h=b("$injector","invoke"),g={_invokeQueue:c,_runBlocks:d,requires:e,name:a,provider:b("$provide","provider"),factory:b("$provide","factory"),service:b("$provide","service"), 
    value:b("$provide","value"),constant:b("$provide","constant","unshift"),filter:b("$filterProvider","register"),directive:b("$compileProvider","directive"),config:h,run:function(a){d.push(a);return this}};f&&h(f);return g})}})})(window); 

    // include a third-party async loader library 
    /*! 
    * $script.js v1.3 
    * https://github.com/ded/script.js 
    * Copyright: @ded & @fat - Dustin Diaz, Jacob Thornton 2011 
    * Follow our software http://twitter.com/dedfat 
    * License: MIT 
    */ 
    !function(a,b,c){function t(a,c){var e=b.createElement("script"),f=j;e.onload=e.onerror=e[o]=function(){e[m]&&!/^c|loade/.test(e[m])||f||(e.onload=e[o]=null,f=1,c())},e.async=1,e.src=a,d.insertBefore(e,d.firstChild)}function q(a,b){p(a,function(a){return!b(a)})}var d=b.getElementsByTagName("head")[0],e={},f={},g={},h={},i="string",j=!1,k="push",l="DOMContentLoaded",m="readyState",n="addEventListener",o="onreadystatechange",p=function(a,b){for(var c=0,d=a.length;c<d;++c)if(!b(a[c]))return j;return 1};!b[m]&&b[n]&&(b[n](l,function r(){b.removeEventListener(l,r,j),b[m]="complete"},j),b[m]="loading");var s=function(a,b,d){function o(){if(!--m){e[l]=1,j&&j();for(var a in g)p(a.split("|"),n)&&!q(g[a],n)&&(g[a]=[])}}function n(a){return a.call?a():e[a]}a=a[k]?a:[a];var i=b&&b.call,j=i?b:d,l=i?a.join(""):b,m=a.length;c(function(){q(a,function(a){h[a]?(l&&(f[l]=1),o()):(h[a]=1,l&&(f[l]=1),t(s.path?s.path+a+".js":a,o))})},0);return s};s.get=t,s.ready=function(a,b,c){a=a[k]?a:[a];var d=[];!q(a,function(a){e[a]||d[k](a)})&&p(a,function(a){return e[a]})?b():!function(a){g[a]=g[a]||[],g[a][k](b),c&&c(d)}(a.join("|"));return s};var u=a.$script;s.noConflict=function(){a.$script=u;return this},typeof module!="undefined"&&module.exports?module.exports=s:a.$script=s}(this,document,setTimeout) 

    // load all of the dependencies asynchronously. 
    $script([ 
     'lib/angular/angular.js', 
     'lib/angular/angular-resource.js', 
     'lib/angular-ui/ui-bootstrap-0.2.0.js', 
     'js/app.js', 
     'js/services.js', 
     'js/controllers.js', 
     'js/filters.js', 
     'js/directives.js' 
    ], function() { 
     // when all is done, execute bootstrap angular application 
     angular.bootstrap(document, ['myApp']); 
    }); 
    </script> 

然後在app.js我做的:

angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives', 'ngResource', 'ui.bootstrap']). 
    config(['$routeProvider', '$locationProvider', function($routeProvider, $locationProvider) { 
    $routeProvider.when('/view1', {templateUrl: 'partials/partial1.html', controller: MyCtrl1}); 
    $routeProvider.when('/view2', {templateUrl: 'partials/partial2.html', controller: MyCtrl2}); 
    $routeProvider.otherwise({redirectTo: '/view1'}); 
    $locationProvider.html5Mode(true).hashPrefix('!'); 
    }]); 
+0

您需要顯示一些代碼。 – ProLoser 2013-03-18 08:56:44

+1

你有沒有找到解決這個問題的辦法?我剛剛在我的項目中遇到了同樣的問題 – 2013-06-11 15:13:33

回答

2

我不認爲這是專門鏈接到引導項目,此刻AngularJS根本不容許異步加載模塊,請檢查此線程:How is modularity mitigated in AngularJS?

基本上所有的AngularJS模塊必須在應用程序啓動之前加載。所以你需要確保你所依賴的所有模塊在你啓動AngularJS應用程序之前完全加載。

很願意幫助更多,但僅僅基於錯誤代碼是幾乎不可能多說。

+0

我更新了我的帖子以包含相關代碼。我認爲$ script.js部分是爲了加載所有文件而設置的,然後增強角度以便它可以使用異步。 – 2013-03-19 00:44:09

+0

@ user45763我真的不知道是怎麼回事......這可能是值得探討的唯一的事情是,你包括DIST文件沒有嵌入模板的事實。嘗試將'ui-bootstrap-0.2.0.js'更改爲'ui-bootstrap-tpls-0.2.0.js'。更多資訊:https://github.com/angular-ui/bootstrap/tree/gh-pages#build-files – 2013-03-19 09:16:36

+0

GitHub的回購頁面使得它聽起來好像我不能,如果使用自己的自定義諧音我使用嵌入它們的庫。我希望能夠自定義。 – 2013-03-19 13:32:05