作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 ionic 和 angularjs 创建 android 应用程序,并使用 window.requestFileSystem 从存储中获取图像。所以对于这个过程,我使用 $q.defer()
作为异步过程,它工作正常并在控制台中显示对象:console.log(deferred.promise)
但是现在,当我尝试从 deferred.promise
中获取值时,例如
var vals = deferred.promise;
console.log(vals.$$state.value);
它显示 undefined
。谁能告诉我如何获得该值?
我的代码:
var deferred = $q.defer();
document.addEventListener("deviceready", function() {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {
imagePath = fileSystem.root.toURL() + 'SmaartMedia/' + splited[splitedLength-1];
deferred.resolve(imagePath);
$rootScope.$apply();
});
}, false);
var vals = deferred.promise;
console.log(vals.$$state.value);
谢谢
最佳答案
function getStuff() {
var deferred = $q.defer();
document.addEventListener("deviceready", function () {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {
imagePath = fileSystem.root.toURL() + 'SmaartMedia/' + splited[splitedLength - 1];
deferred.resolve(imagePath);
$rootScope.$apply();
});
}, false);
return deferred.promise;
}
//Get value like this
getStuff().then(function(response){
//Use value here
});
关于javascript - 如何从已解决的延迟 Angularjs 中获取值(value),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39362906/
我是一名优秀的程序员,十分优秀!