0

“类型错误:对象不支持此操作未定义” 当我尝试执行我的 Angular 应用程序时,这是 IE8 控制台中的消息。Angular 不会执行任何它应该执行的操作。任何人都会有解决这个问题的提示吗?我已经包含了 json2 和 ui-ieshiv。我也以这种方式编写了html标签:

<html xmlns:ng="http://angularjs.org" class="ng-app:app" ng-app="app" id="ng-app">

一切顺利!

4

2 回答 2

9

当我在其中运行我的 Angular 应用程序时,IE8 不喜欢 3 件事。

1)console.log函数。在引导 angular 之前,我必须将此 javascript 放在页面中:

// Avoid `console` errors in browsers that lack a console.
            (function() {
                var method;
                var noop = function () {};
                var methods = [
                    'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
                    'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
                    'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
                    'timeStamp', 'trace', 'warn'
                ];
                var length = methods.length;
                var console = (window.console = window.console || {});

                while (length--) {
                    method = methods[length];

                    // Only stub undefined methods.
                    if (!console[method]) {
                        console[method] = noop;
                    }
                }
            }());

2) toISOString 函数

 /*IE8 toISOString hack */
            if (!Date.prototype.toISOString) {
                Date.prototype.toISOString = function() {
                    function pad(n) { return n < 10 ? '0' + n : n }
                    return this.getUTCFullYear() + '-'
                        + pad(this.getUTCMonth() + 1) + '-'
                        + pad(this.getUTCDate()) + 'T'
                        + pad(this.getUTCHours()) + ':'
                        + pad(this.getUTCMinutes()) + ':'
                        + pad(this.getUTCSeconds()) + '.'
                        + pad(this.getUTCMilliseconds()) + 'Z';
                };
            }

3) forEach 函数

  /*IE8 hack to support forEach */
            if (!Array.prototype.forEach) {
              Array.prototype.forEach = function(fn, scope) {
                for(var i = 0, len = this.length; i < len; ++i) {
                  fn.call(scope, this[i], i, this);
                }
              }
            }

请注意,我自己没有写任何这些。我从 SO 中“挖掘”了它。

这些是我必须修复才能在 IE8 中运行的罪魁祸首。现在,它工作正常。

于 2013-08-23T21:02:09.367 回答
0

问题解决了! 我发现 IE8 和插件 Angular-Restful 之间存在问题。当我把它拿走时,我的应用程序又恢复了。

于 2013-09-17T18:43:32.280 回答