gpt4 book ai didi

javascript - 从内容脚本触发 Angular 函数?

转载 作者:行者123 更新时间:2023-11-28 00:40:07 25 4
gpt4 key购买 nike

我正在尝试使用内容脚本或类似内容从现有网站访问 Angular 函数。我知道我需要调用的函数,但我不熟悉 Angular 函数的范围。因此,即使我可以看到该函数,并且知道要传递给它的参数,我也无法从控制台调用它。

这是我需要的功能...

angular.module("smartwayTraffic").controller("mapController", ["$scope", "$window", "$q", "$timeout", "$modal", "_", "constant", "geolocation", "dataService", "mapService", function(n, t, i, r, u, f, e, o, s, h) {

...

n.gotoRegion = function(t) {
e.regionBounds.forEach(function(i) {
i.region === t && (y(), n.map.control.fitBounds(i.bounds), v())
})
};

....

我还需要什么才能从控制台触发此功能?

....gotoRegion("Nashville");

最佳答案

是的,您只需要使用 angular.element 来获取 Controller 范围内的元素:

angular.element("yourElement").scope().n.gotoRegion();

关于javascript - 从内容脚本触发 Angular 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28047724/

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