gpt4 book ai didi

javascript - 无法读取 $promise 的属性然后未定义?

转载 作者:行者123 更新时间:2023-12-02 16:00:27 24 4
gpt4 key购买 nike

我正在从 Controller 调用工厂,试图解析 $promise(如果其 thenable 获取 response.data ),但我收到错误“无法读取 'then' 未定义的属性”。我是 AngularJS 的新手,请告诉我哪里编码错误。

mfactory.js

 getAlldocs : function (assessmentId){
$http.get('app/upload/getallDoc/' +assessmentId);
}

main.js

  $scope.riskAssessmentDTO.riskAssessmentKey = id;
rcsaAssessmentService.getAlldocs(id,function(response){
assessmentData = response.data;
});

最佳答案

您需要从函数返回 $http 调用:

getAlldocs : function (assessmentId){
return $http.get('app/upload/getallDoc/' +assessmentId);
}

否则你根本不会返回 promise 。

关于javascript - 无法读取 $promise 的属性然后未定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31252947/

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