gpt4 book ai didi

javascript - 错误着陆时不引用父作用域

转载 作者:行者123 更新时间:2023-11-30 21:20:46 25 4
gpt4 key购买 nike

我有一个如下所示的 Angular 指令

function parentFunction(parentService) {
vm.childFunction = function() {
parentService.funFunction()
.then(function(response) { /* success */ },
function(response) { /* failure */ });
};
}

我想访问 parentService 在

function(response) { /* failure */ }

但是当我尝试访问 parentService 时,出现以下错误:

Uncaught ReferenceError: parentService is not defined

如何在 function(response) {/* failure */} 部分使用 parentService?

最佳答案

parentService 应该作为参数传递给您的 Controller 而不是您的函数

.controller('PhotoCtrl', ['parentService', function (parentService) {
vm.childFunction = function() {
parentService.funFunction()
.then(function(response) { /* success */ },
function(response) { /* failure */ });
};
}])

关于javascript - 错误着陆时不引用父作用域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45203185/

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