Javascript 对象没有';t支持属性或方法';满载';

Javascript 对象没有';t支持属性或方法';满载';,javascript,angularjs,internet-explorer,Javascript,Angularjs,Internet Explorer,我在IE11中看到了这个错误 它似乎与摘要循环中的角度代码有关。堆栈跟踪向下延伸到ng视图 <div class="ng-scope" id="ng-view" ng-view="ng-view" ng-class="{'navbar-hidden': Session.vars.shouldHideNav}" ng-click="Session.hideNavs()"> TypeError:对象不支持属性或方法“loadFull” TypeError: Object doesn

我在IE11中看到了这个错误

它似乎与摘要循环中的角度代码有关。堆栈跟踪向下延伸到ng视图

<div class="ng-scope" id="ng-view" ng-view="ng-view" ng-class="{'navbar-hidden': Session.vars.shouldHideNav}" ng-click="Session.hideNavs()">

TypeError:对象不支持属性或方法“loadFull”

TypeError: Object doesn't support property or method 'loadFull'
   at Anonymous function (eval code:17:438)
   at t (eval code:17:95)
   at Anonymous function (eval code:17:168)
   at eval code (eval code:17:2)
   at a.execScript (https://code.jquery.com/jquery-1.11.2.min.js:2:2615)
   at globalEval (https://code.jquery.com/jquery-1.11.2.min.js:2:2589)
   at domManip (https://code.jquery.com/jquery-1.11.2.min.js:3:23105)
   at append (https://code.jquery.com/jquery-1.11.2.min.js:3:20608)
   at Anonymous function (https://code.jquery.com/jquery-1.11.2.min.js:3:22138)
   at m.access (https://code.jquery.com/jquery-1.11.2.min.js:3:3345) <div class="ng-scope" id="ng-view" ng-view="ng-view" ng-class="{'navbar-hidden': Session.vars.shouldHideNav}" ng-click="Session.hideNavs()">
TypeError:对象不支持属性或方法“loadFull”
at匿名函数(评估代码:17:438)
at t(评估代码:17:95)
at匿名函数(评估代码:17:168)
at评估代码(评估代码:17:2)
在a.execScript(https://code.jquery.com/jquery-1.11.2.min.js:2:2615)
在环球假日酒店(https://code.jquery.com/jquery-1.11.2.min.js:2:2589)
在多姆马尼普(https://code.jquery.com/jquery-1.11.2.min.js:3:23105)
附加(https://code.jquery.com/jquery-1.11.2.min.js:3:20608)
匿名函数(https://code.jquery.com/jquery-1.11.2.min.js:3:22138)
在m通道(https://code.jquery.com/jquery-1.11.2.min.js:3:3345) 
我不确定原因是什么,也找不到
loadFull
属性或方法试图做什么,或者它来自哪里


angular版本:1.3.15

最终跟踪到了这个bug,发现它与无法从服务器加载模板有关。从angular到服务器的模板请求没有正确的路径,似乎没有考虑头部的
标记

这把它修好了

之前:

<head>
  <title>Page title</title>
  <!-- A bunch of styles and meta tags --> 
  <base href="/">
</head>

页面标题
之后:

<head>
  <title>Page title</title>
  <base href="/">
  <!-- A bunch of styles and meta tags --> 
</head>

页面标题
这把它修好了