8

我正在开发一个使用 AngularJs 的大型应用程序。

当我在 IE8 中查看页面时,我会收到超级漂亮的控制台错误,例如Object doesn't support property or method 'module', Object doesn't support property or method 'widget',unable to get value of the property 'controller': object is null or undefinedIE really sucks, cant you just tell them to download chrome?

在与它斗争了一段时间后,我决定记录typeof angular控制台返回的日志undefined

在 IE9、IE10 和所有不糟糕的浏览器中,一切都按预期工作。

请帮忙!

编辑

看来角度是undefined在它到达我的第一个控制器之前,所以我认为它与 ieshim 无关......

4

4 回答 4

5

我已经使用 IE8 六个月了,感受一下你的痛苦。

没有看到你的代码,很难准确地说出什么问题

这是我刚刚用 IE8 测试的一个非常基本的页面,供您比较:

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8">
    <meta charset="utf-8">
    <title>Prompt Detail View</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="">

    <!-- disable browser cache -->
    <meta http-equiv="cache-control" content="max-age=0" />
    <meta http-equiv="cache-control" content="no-cache" />
    <meta http-equiv="expires" content="0" />
    <meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
    <meta http-equiv="pragma" content="no-cache" />


    <!--[if lte IE 8]>
    <script>
        document.createElement('ng-include');
        document.createElement('ng-pluralize');
        document.createElement('ng-view');
        // Optionally these for CSS
        document.createElement('ng:include');
        document.createElement('ng:pluralize');
        document.createElement('ng:view');
    </script>
    <![endif]-->

    <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
    <!--[if lt IE 9]>
          <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
        <![endif]-->

    <script src="js/jquery-1.7.2.min.js"></script>
    <script src="js/angular-1.0.2.js" ng:autobind></script>


<script>
var pageModule = angular.module('pageModule',[])
.controller('pageCtrl',function($scope) {
   $scope.foo = 'my foo'; 
});

</script>
</head>


<body>
    <div ng-app="pageModule"
        ng-controller="pageCtrl">
            {{foo}}
    </div>
</body>
</html>
于 2013-04-08T22:01:44.757 回答
2

所以这完全是我的错(或者几个月前开始这个应用程序的人)。

我的应用程序控制器var angular = angular || {}在顶部,IE8 不同意这个声明。

删除后一切正常。

于 2013-04-30T21:21:13.663 回答
2

我也遇到了同样的问题,我的 IE9 浏览器无法识别任何 AngularJs 标签,在尝试了一切之后,我决定在服务器中运行 html 文件并且它工作正常。

总结一下,当我按如下方式执行文件时它不起作用

file:///C:/AngularJS/firstTest.html

当我按如下方式在服务器中执行文件时,它确实有效

http://localhost:7001/AngularJS/firstTest.html

于 2015-05-14T14:57:48.593 回答
0

var versionError = angular.module('versionErrors', [])
  .controller('versionCtrl', function($scope) {
    $scope.name = 'Shantha Moorthy K';
  });
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular.min.js"></script>
<!DOCTYPE html>
<html lang="en">

<head>
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  <meta charset="utf-8">
  <title>AngularJS with Lower version Error's</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>


<body>
  <div ng-app="versionErrors" ng-controller="versionCtrl">
    {{name}}
  </div>
</body>

</html>

对象不支持属性或方法“模块”

`如果您使用 AngularJS + IE(8) 的低版本,请包括 content="IE=edge"。

包含之后,您将克服以下错误。

  1. 预期对象
  2. 对象不支持属性或方法“模块”`##
于 2016-05-02T12:29:56.923 回答