使用angular-ui-calendar时出现问题。
当我更改加载日历的路径时,我最终得不到值参数的循环引用。
此外,当日历加载时,控制台显示错误索引。
此错误仅发生在IE8和IE9上
在我的控制器里,我有 $ scope.eventSources = [[{“start”:“2014-03-07T00:00:00Z”,“title”:“Ring Child Services”},{“start”:“2014-03-06T00:00:00Z “,”title“:”Check on On incident_2“}]];
并在HTML模板中
<div ui-calendar="uiConfig.calendar" class="col-sm-11 calendar" ng-model="eventSources"> </div>
非常感谢任何想法。
由于
答案 0 :(得分:0)
事实证明问题是由使用location.href而不是$ location.path更改位置引起的。
不确定为什么location.href会导致问题,但使用$ location.path可以解决问题。