0

発行し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;
}
4

1 に答える 1

2

angular@1.2 でサポートされている angular-toastr のバージョンは 0.3.0 です。

于 2014-12-17T16:11:36.587 に答える