4

我刚刚发布了这个小提琴,认为它可能对像我这样的人有所帮助。它展示了如何将普通的 javascript 传递给 Angular 范围。在这种情况下,范围获取窗口内部大小信息。

http://jsfiddle.net/spacm/HeMZP/

供个人使用,我会将这些信息传递给角度范围:

  • 宽度和高度
  • 方向/方向变化
  • iframe 检测
  • 操作系统检测

使用navigator.platform变量

function isInIFrame(){
    return window.location !== window.parent.location;
}

function updateMediaInfoWH() {
    if((typeof(mediaInfo.inIFrame)!='undefined') && (!mediaInfo.inIFrame)) {
        mediaInfo.width = innerWidth;
        mediaInfo.height = innerHeight;
        updateMediaInfoOrientation();
    }
    tellAngular();
}

function tellAngular() {
    console.log("tellAngular");
    var domElt = document.getElementById('mainContainer');
    scope = angular.element(domElt).scope();
    console.log(scope);
    scope.$apply(function(){
        scope.mediaInfo = mediaInfo;
        scope.info = mediaInfo.width;
    });
}

欢迎任何评论。

4

1 回答 1

6

我没有看到要回答的问题,所以我假设您的问题是在寻找有关您想法的输入。

开始使用 Angular 可能与您通常的工作方式有很大不同,主要是因为它们完全且完全地使用了依赖注入。

您不必“告诉” Angular 任何东西,您应该能够通过注入的依赖项(即 Angular 服务)访问所有这些信息。

使用您向我展示的内容,它可能看起来像这样:

my.MediaInfo = function($window) {
  this.window_ = $window;
  this.inIframe = $window.self !== $window.top;
  if(!this.inIFrame) {
    this.width = $window.innerWidth;
    this.height = $window.innerHeight;
  } else {
    this.width = this.height = ...;
  }
}

my.angular.controller = function($scope, mediaInfo) {
  // {width: X, height: Y, inIframe: false}
  $scope.mediaInfo = mediaInfo;
}

然后你的 Angular 模块看起来像:

angular.module('module', [])
    .service('mediaInfo', my.MediaInfo)
    .controller('mainCtrl', my.angular.controller);

希望这是一个很好的演示,说明您应该如何将数据导入 Angular。

于 2013-01-22T02:17:21.477 回答