这个Angular.js UI.Bootstrap错误似乎没有意义

时间:2014-06-04 00:08:42

标签: angularjs twitter-bootstrap angular-ui-bootstrap

我收到以下错误消息。浏览器认为它已被处理,但它仍然显示在控制台中。它似乎没有影响到任何东西,除了我想在我的控制台中没有错误,当我推动它生活。

TypeError: Unable to get property 'split' of undefined or null reference
at createParser (http://domain:50022/Scripts/angular-ui/ui-bootstrap-tpls.js:751:19)
at parse (http://domain:50022/Scripts/angular-ui/ui-bootstrap-tpls.js:785:7) 
at parseDate (http://domain:50022/Scripts/angular-ui/ui-bootstrap-tpls.js:1478:11) 
at ngModel.$render (http://domain:50022/Scripts/angular-ui/ui-bootstrap-tpls.js:1517:9) 
at ngModelWatch (http://domain:50022/Scripts/angular-scenario.js:27134:9)    
at Scope.prototype.$digest (http://domain:50022/Scripts/angular-scenario.js:22035:21)    
at Scope.prototype.$apply (http://domain:50022/Scripts/angular-scenario.js:22308:13)    
at done (http://domain:50022/Scripts/angular-scenario.js:17996:34)    
at completeRequest (http://domain:50022/Scripts/angular-scenario.js:18204:7)    
at xhr.onreadystatechange (http://domain:50022/Scripts/angular-scenario.js:18143:11)

我注意到的第一件事是这些都不是我的代码。它似乎都是Angular.js或UI.Boostrap.js代码。

我使用了tab指令和日期选择器。但就是这样。

[编辑]目前,我只在使用日期选择器的页面上显示此内容。

[编辑2]这是我唯一的自定义代码,其他一切都是使用HTML中的指令。

(function () {
    'use strict';

    var appid = 'app';

    var app = angular.module(appid, [
        'ngAnimate',        // animations
        'ngRoute',          // routing
        'ngResource',       // Rest Call
        'ui.bootstrap',     // Twitter Bootstrap Support
        'textAngular',      // Rich text editor
        'RecursionHelper',  // Recursion assistant.
        'UIDragDrop',       // Drag and Drop handlers.
    ]);
})();

解决此问题后,大部分内容都已实施。

[编辑]我正在尝试在另一个文件中重建这个以填充plunker。一旦我这样做,我就会链接到它。

0 个答案:

没有答案