- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试从服务加载数据时收到以下错误消息:Error: undefined is not an object (evaluating 'ProfileService.getProfile(1).then
.
配置文件 Controller
这里发生错误...
vm.user = {};
vm.loadProfile = function() {
ProfileService.getProfile(1).then(function(profileData) {
console.log(profileData);
vm.user = profileData;
})
};
vm.loadProfile()
配置文件服务
function getProfile(id) {
var profile = [];
$log.debug('Getting profile with id: ' + id);
StubFactory.getProfileData().then(function(result) {
for(var i = 0; i < result.data.profiles.length; i++) {
if(result.data.profiles[i].id === id) {
profile = result.data.profiles[i];
}
}
$log.debug('Getting contacts for profile with id: ' + id);
profile.contacts = [];
StubFactory.getContactsData().then(function(result) {
for(i = 0; i < profile.contactMapper.length; i++) {
for(var j = 0; j < result.data.contacts.length; j++) {
if(profile.contactMapper[i] === result.data.contacts[j].id) {
profile.contacts.push(result.data.contacts[j]);
}
}
}
});
$log.debug('Getting documents for profile with id: ' + id);
profile.documents = [];
StubFactory.getDocumentsData().then(function(result) {
for(i = 0; i < profile.documentMapper.length; i++) {
for(var j = 0; j < result.data.documents.length; j++) {
if(profile.documentMapper[i] === result.data.documents[j].id) {
profile.documents.push(result.data.documents[j]);
}
}
}
});
$log.debug('Completed load for profile with id: ' + id);
$log.info(profile);
return profile;
});
}
StubFactory
function getContactsData() {
return $http.get('data/contacts.json');
}
function getProfileData() {
return $http.get('data/profiles.json');
}
function getDocumentsData() {
return $http.get('data/documents.json');
}
日志如下...
[Warning] Unexpected CSS token: : (main.css, line 4919)
[Warning] Unexpected CSS token: : (main.css, line 8199)
[Warning] Unexpected CSS token: : (main.css, line 8207)
[Debug] Getting profile with id: 1 (angular.js, line 14326)
[Error] Error: undefined is not an object (evaluating 'ProfileService.getProfile(1).then')
loadProfile@http://localhost:9000/scripts/controllers/profile.js:17:35
http://localhost:9000/scripts/controllers/profile.js:22:19
$controllerInit@http://localhost:9000/bower_components/angular/angular.js:10717:40
nodeLinkFn@http://localhost:9000/bower_components/angular/angular.js:9594:45
compositeLinkFn@http://localhost:9000/bower_components/angular/angular.js:8903:23
publicLinkFn@http://localhost:9000/bower_components/angular/angular.js:8768:45
link@http://localhost:9000/bower_components/angular-route/angular-route.js:1222:11
invokeLinkFn@http://localhost:9000/bower_components/angular/angular.js:10274:15
nodeLinkFn@http://localhost:9000/bower_components/angular/angular.js:9663:23
compositeLinkFn@http://localhost:9000/bower_components/angular/angular.js:8903:23
publicLinkFn@http://localhost:9000/bower_components/angular/angular.js:8768:45
update@http://localhost:9000/bower_components/angular-route/angular-route.js:1171:36
$broadcast@http://localhost:9000/bower_components/angular/angular.js:18343:33
http://localhost:9000/bower_components/angular-route/angular-route.js:733:40
processQueue@http://localhost:9000/bower_components/angular/angular.js:16689:39
http://localhost:9000/bower_components/angular/angular.js:16733:39
$digest@http://localhost:9000/bower_components/angular/angular.js:17827:36
$apply@http://localhost:9000/bower_components/angular/angular.js:18125:31
done@http://localhost:9000/bower_components/angular/angular.js:12233:53
completeRequest@http://localhost:9000/bower_components/angular/angular.js:12459:15
requestLoaded@http://localhost:9000/bower_components/angular/angular.js:12387:24 – "<div ng-view=\"\" class=\"ng-scope\">"
(anonymous function) (angular.js:10859)
invokeLinkFn (angular.js:10276)
nodeLinkFn (angular.js:9663)
compositeLinkFn (angular.js:8903)
publicLinkFn (angular.js:8768)
update (angular-route.js:1171)
$broadcast (angular.js:18343)
(anonymous function) (angular-route.js:733)
processQueue (angular.js:16689)
(anonymous function) (angular.js:16733)
$digest (angular.js:17827)
$apply (angular.js:18125)
done (angular.js:12233)
completeRequest (angular.js:12459)
requestLoaded (angular.js:12387)
[Debug] Getting contacts for profile with id: 1 (angular.js, line 14326)
[Debug] Getting documents for profile with id: 1 (angular.js, line 14326)
[Debug] Completed load for profile with id: 1 (angular.js, line 14326)
[Info] {id: 1, firstName: "Robert", lastName: "Emery", address: "95 Guild Street, London, N14 3UF", type: "tenant", …} (profile.js, line 115)
profile.js, line 115
是ProfileService
中的以下代码行: $log.info(profile);
.
最佳答案
您的问题与 promise 的异步行为有关,这很好。因此,要获取数据,您有两种方法:
first 方法是链接 .then
事件并从最后一个 promise result
调用一个 callbackfunction
。代码如下所示:
配置文件 Controller
vm.user = {};
vm.loadProfile = function() {
ProfileService.getProfile(1, callBackfunc); // pass callback function
};
function callBackfunc(profileData){
vm.user = profileData;
}
vm.loadProfile();
配置文件服务
function getProfile(id, callBackfunc) {
var profile = [];
// chain .then events
$log.debug('Getting profile with id: ' + id);
StubFactory.getProfileData().then(function(result) {
for(var i = 0; i < result.data.profiles.length; i++) {
if(result.data.profiles[i].id === id) {
profile = result.data.profiles[i];
}
}
$log.debug('Getting contacts for profile with id: ' + id);
profile.contacts = [];
StubFactory.getContactsData().then(function(result) {
for(i = 0; i < profile.contactMapper.length; i++) {
for(var j = 0; j < result.data.contacts.length; j++) {
if(profile.contactMapper[i] === result.data.contacts[j].id) {
profile.contacts.push(result.data.contacts[j]);
}
}
}
$log.debug('Getting documents for profile with id: ' + id);
profile.documents = [];
StubFactory.getDocumentsData().then(function(result) {
for(i = 0; i < profile.documentMapper.length; i++) {
for(var j = 0; j < result.data.documents.length; j++) {
if(profile.documentMapper[i] === result.data.documents[j].id) {
profile.documents.push(result.data.documents[j]);
}
}
}
$log.debug('Completed load for profile with id: ' + id);
$log.info(profile);
callBackfunc(profile); // callback function called.
});
});
});
}
第二种方法是使用$q
服务并利用它的$q.all()
方法。
那么你的代码将是这样的:
let promises = [promisegetProfileData(), promisegetContactsData(), promisegetDocumentsData()];
$q.all(promises).then((values) => {
var profile = [];
// assign ProfileData values[0]
// assign ContactData values[1]
// assign DocumentData values[2]
callBackFunc(profile);
});
关于javascript - 错误 : undefined is not an object (evaluating 'ProfileService.getProfile(1).then' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43166494/
我被卡住了,请重新审视这个问题。 我正在与其他人的意大利面条式代码一起工作,这些代码不再存在,并且有很多时间弄清楚他们正在评估什么。 在查询转储中,我看到
真实世界Haskell的第8章 globToRegex' (c:cs) = escape c ++ globToRegex' cs 这个函数不是尾递归的,它说答案依赖于 Haskell 非严格(惰性)
来自 Haskell,我正在阅读 Idris 关于懒惰(非严格)的故事。我翻了翻最近的发行说明,还有 found code类似于以下 myIf : (b : Bool) -> (t : Lazy a)
我正在读这个帖子 A custom find function并指出了这一点 有趣的结果。请注意,Evaluate 与 Application.Evaluate 相同,并且所需时间大约是 Active
R包裹mice带有以下示例: library("mice") imp <- mice(nhanes) fit <- with(data=imp,exp=lm(bmi~hyp+chl)) 我想要一个灵活
我正在尝试使用 PHPUnit 3.6.4 对我的 Zend Framework 应用程序进行单元测试。当我在命令提示符中尝试此命令时,出现以下错误。 C:\xampp\htdocs\testsamp
我希望函数的结果是: 所有值的计算结果均为 False(无、0、空字符串)-> True 所有值的计算结果为 True -> True 所有其他情况 -> 错误 这是我的尝试: >>> def con
我可以使用 puppeteer 导航到一个页面但后来page.evaluate没有返回任何响应。此外,我无法在 page.evaluate 内部进行调试。任何一个。我在 Debug模式下运行脚本( n
from surprise import Reader, Dataset, SVD from surprise import evaluate ----------------------------
使用 PhantomJS 考虑以下代码片段: var reloadAfterLogin = false; function(user, pass, debug){ // step 3 submit L
我知道流是惰性的,直到在流上调用终端方法。我所知道的是,在调用终端方法之后,所有中间方法都按调用顺序执行。 但是对于下面的程序,我无法理解流是如何工作的。这是代码,我试过了。 import java.
最近我开始研究 VS2012。 当我调试代码(这是 SharePoint 2013 应用程序)并尝试获取变量的值时 - 我一次又一次收到消息: Function evaluation disabled
我正在阅读 David Flanagan 的《JavaScript:权威指南》,这可能是世界上最厚的 JavaScript 书。在简要描述数组初始值设定项时,弗拉纳根说“每次数组初始值设定项时都会评估
在 puppeteer 截取屏幕截图之前,我试图让代码执行等待所有图像加载完毕。当调用 initData() 函数时,我的 DOM 被填充,该函数在客户端 js 文件中定义。延迟或超时是一种选择,但我
对国际通用标准有一些批评,如 [Under-attack]。 1 您认为使用 CC 开发 IT 产品的利弊是什么? 最佳答案 我是 BSI(德国)和 NIAPP(美国)计划的通用标准评估员。我有一些经
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 11 年前关闭。 Improve this
在非严格求值语言中,使用按名称调用与通过宏扩展调用有何区别和优点/缺点? 您能否提供一个示例来解释这两种评估策略? 谢谢! 最佳答案 按姓名调用: 按名称调用是一种求值策略,其中函数的参数在调用函数之
我真的无法在 Modelica 规范中找到任何答案,所以我想问问你们。规范指出如果表达式的值不影响结果(例如, bool 表达式的短路评估),工具可以自由地求解方程、重新排序表达式和不计算表达式。 I
我想尝试惰性表达式评估,但我现在不想深入研究 Haskel。拜托,你能帮忙找出其他语言有这个功能吗? 最佳答案 你可以用多种语言模拟它。 this例如,是 C++ 的通用惰性求值器。正如文章所说,它也
关注,据说foldl'是 foldl 的严格版本. 但是我很难理解,strict 是什么意思?意思是?? foldl f z0 xs0 = lgo z0 xs0 where
我是一名优秀的程序员,十分优秀!