gpt4 book ai didi

javascript - AngularJS 1事件-回调方法中的 "this"变量是窗口

转载 作者:行者123 更新时间:2023-12-03 05:08:55 25 4
gpt4 key购买 nike

我正在尝试学习使用 AngularJS 1.6 事件。
我创建了一个注册到事件的组件:

'use strict';
var module = angular.module("Test", []);
module.controller("Controller1", Controller1);

Controller1.$inject = ["$scope"];
function Controller1($scope) {
var self = this;
self.try = function () {
$scope.$broadcast("test:try");
}
}
module.controller("Controller2", Controller2);
module.component("compo2", {
controller: "Controller2",
});


Controller2.$inject = ["$scope"];
function Controller2($scope) {
var self = this;
this.$onInit = function () {
$scope.$on("test:try", self.try);
}

self.try = function (event, data) {
console.log("Logged event!!!")
}
}

这是我的 html 文件:

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script src="./Test/angular.js"></script>
<script src="./compoTest.js"></script>
</head>
<body ng-app="Test" ng-controller="Controller1 as ctrl1">
<compo2> T.E.S.T </compo2>
<button ng-click="ctrl1.try();"> Try! </button>
</body>
</html>

但是当调用回调“try”时 - 我看到 this 变量是窗口而不是我的组件的 Controller 。

我做错了什么?

最佳答案

这就是在 JS 中调用对象方法作为回调时发生的情况。

为了避免意外使用窗口,请在JS文件的开头使用严格模式:

'use strict';

该方法应该绑定(bind)到上下文:

this.try = function (event, data) {
this....
}.bind(this);

或者应该使用self配方:

var self = this;

self.try = function (event, data) {
self....
};

关于javascript - AngularJS 1事件-回调方法中的 "this"变量是窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41910481/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com