1

我刚刚开始学习 SPA 应用程序,但在 IE8 上运行它时遇到问题。我正在使用 mvc4 和 EF。该应用程序是使用 durandal 构建的。

我正在使用 jquery 1.10,因为 jquery 2 在 IE 8 上不起作用。

基本上我得到的错误是

'Unhandled exception at line 786, column 9 in http://localserver/scripts/breeze.debug.js

0x800a01b6 - Microsoft JScript runtime error: Object doesn't support this property or method'.

该应用程序在 Firefox 和 chrome 上运行良好。

4

2 回答 2

5

确保在 'breeze.js' 之前包含 es5-shim.js 和 es5-sham.js

例如:

<!--[if lt IE 9]>
      <script src="Scripts/es5-shim.js"></script>
      <script src="Scripts/es5-sham.js"></script>
<![endif]-->
<script src="Scripts/jquery-1.9.1.js"></script>
<script src="Scripts/knockout-2.2.1.js"></script>
<script src="/Scripts/q.min.js"></script>
<script src="/Scripts/breeze.debug.js"></script>

它记录在先决条件部分中,但没有一个示例使用它。如果更新样本以包含这些,那就太好了。我知道我很难找到解决这个问题的方法。

于 2013-07-19T15:29:33.420 回答
0

较旧的浏览器缺少一些数组函数,所以添加一些 javascript :)

    if (!('bind' in Function.prototype)) {
        Function.prototype.bind= function(owner) {
            var that= this;
            if (arguments.length<=1) {
                return function() {
                    return that.apply(owner, arguments);
                };
            } else {
                var args= Array.prototype.slice.call(arguments, 1);
                return function() {
                    return that.apply(owner, arguments.length===0? args : args.concat(Array.prototype.slice.call(arguments)));
                };
            }
        };
    }

    if (!('trim' in String.prototype)) {
        String.prototype.trim= function() {
            return this.replace(/^\s+/, '').replace(/\s+$/, '');
        };
    }

    if (!('indexOf' in Array.prototype)) {
        Array.prototype.indexOf= function(find, i /*opt*/) {
            if (i===undefined) i= 0;
            if (i<0) i+= this.length;
            if (i<0) i= 0;
            for (var n= this.length; i<n; i++)
                if (i in this && this[i]===find)
                    return i;
            return -1;
        };
    }
    if (!('lastIndexOf' in Array.prototype)) {
        Array.prototype.lastIndexOf= function(find, i /*opt*/) {
            if (i===undefined) i= this.length-1;
            if (i<0) i+= this.length;
            if (i>this.length-1) i= this.length-1;
            for (i++; i-->0;) /* i++ because from-argument is sadly inclusive */
                if (i in this && this[i]===find)
                    return i;
            return -1;
        };
    }
    if (!('forEach' in Array.prototype)) {
        Array.prototype.forEach= function(action, that /*opt*/) {
            for (var i= 0, n= this.length; i<n; i++)
                if (i in this)
                    action.call(that, this[i], i, this);
        };
    }
    if (!('map' in Array.prototype)) {
        Array.prototype.map= function(mapper, that /*opt*/) {
            var other= new Array(this.length);
            for (var i= 0, n= this.length; i<n; i++)
                if (i in this)
                    other[i]= mapper.call(that, this[i], i, this);
            return other;
        };
    }
    if (!('filter' in Array.prototype)) {
        Array.prototype.filter= function(filter, that /*opt*/) {
            var other= [], v;
            for (var i=0, n= this.length; i<n; i++)
                if (i in this && filter.call(that, v= this[i], i, this))
                    other.push(v);
            return other;
        };
    }
    if (!('every' in Array.prototype)) {
        Array.prototype.every= function(tester, that /*opt*/) {
            for (var i= 0, n= this.length; i<n; i++)
                if (i in this && !tester.call(that, this[i], i, this))
                    return false;
            return true;
        };
    }
    if (!('some' in Array.prototype)) {
        Array.prototype.some= function(tester, that /*opt*/) {
            for (var i= 0, n= this.length; i<n; i++)
                if (i in this && tester.call(that, this[i], i, this))
                    return true;
            return false;
        };
    }
于 2013-12-20T02:02:10.970 回答