获得'无法阅读财产'然后'未定义的'使用toastr

时间:2014-12-11 00:31:04

标签: javascript toastr

我发布了toastr.error("a message"),但收到了此错误。当它_setContainer时,它会在$animate.enter().then(function())中发生。 我错过了什么?

function _setContainer(options) {
  if(container) { return containerDefer.promise; } // If the container is there, don't create it.

  container = angular.element('<div></div>');
  container.attr('id', options.containerId);
  container.addClass(options.positionClass);
  container.css({'pointer-events': 'auto'});
  var body = $document.find('body').eq(0);
  $animate.enter(container, body).then(function() {
    containerDefer.resolve();
  });
  return containerDefer.promise;
}

1 个答案:

答案 0 :(得分:2)

angular@1.2支持的angular-toastr版本为0.3.0