欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解在AngularJS的controller外部直接获取$scope

程序员文章站 2022-05-21 21:20:47
以前利用webqq的写过一个自动发消息的脚本,由于那时webqq还直接使用类似jquery操作dom的技术,所以脚本很简单就可以实现。 现如今很多web应用都开始使用an...

以前利用webqq的写过一个自动发消息的脚本,由于那时webqq还直接使用类似jquery操作dom的技术,所以脚本很简单就可以实现。

现如今很多web应用都开始使用angularjs,mvvm导致的就是无法操作dom而去直接改变数据。所以面对网页版微信,要实现一个自动发送的脚本,就无法再用以前那套dom的思路了。

要修改angularjs中的数据,首先就要获取scope。其实获取scope的方法很简单。

由于大部分angular项目需要使用jquery作为补充。可以在jquery中通过.scope()方法获取当前选择器内容里继承的域。

即类似这样的方式:

$('div[ng-controller="listcontroller"]').scope();

例:完整的例子。

<!doctype html>
<html lang="en" ng-app="app">
<head>
  <meta charset="utf-8">
  <title>get angular's scope in jquery</title>
  <script src="http://cdn.bootcss.com/jquery/2.1.4/jquery.js"></script>
  <script src="http://cdn.bootcss.com/angular.js/1.4.3/angular.js"></script>
  <script>
    angular.module('app',[])
        .controller('listcontroller',['$scope', function ($scope) {
          $scope.list = [1,2,3,4,5];
          $scope.test = function () {
            console.log('test');
          }
        }])
  </script>
  <script>
    $(document).on('ready', function () {
      var controllerscope = $('div[ng-controller="listcontroller"]').scope(); // get controller's scope
      controllerscope.test(); // log 'test'
      console.log(controllerscope.list); // log [1,2,3,4,5]
      $('button').click(function (e) {
        var scope = $(e.target).scope();
        console.log(scope.item) // log item number
        scope.test(); // log 'test'
      })
    })
  </script>
</head>
<body>
<div ng-controller="listcontroller">
  <ul>
    <li ng-repeat="item in list"><button>select {{item}}</button></li>
  </ul>
</div>
</body>
</html>

那么打开网页版微信的页面(2016-06-05)选中你需要发消息的人。然后执行如下脚本:

var controllerscope = $('div[ng-controller="chatsendercontroller"]').scope(); 
  // 获取chatsendercontroller的$scope
controllerscope.editareactn = "星哥,下午好";  // 设置需要发送的消息。即设置$scope某个属性的值。

// 触发“发送按钮”的点击事件。
$(".action a").trigger("click");

非常好的“外挂方式”。 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。