0

我在解决我的承诺时遇到了问题——奇怪的是,我的标记中出现了这个问题:

{{details.customer_email}}

它正确解析,并显示“$http”请求返回的电子邮件地址。

但是,尝试访问此:

$scope.user = {
    ...
    emailAddress : $scope.details.customer_email,
    ...
};

null

这是相关的块:

$scope.session = {
    is_authenticated: false,
    customer_email: null
};

var detailsDeferred = $q.defer();

$scope.details = detailsDeferred.promise;

$scope.authed = function () {

    $http({
        url: 'http://api.foo/auth',
        withCredentials: true,
        method: "GET",
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded'
        }
    }).success(function (data, status, xhr) {

            $scope.session = {
                is_authenticated: data.is_authenticated,
                customer_email: data.customer_email
            };

            detailsDeferred.resolve($scope.session);


        })
        ...

    return $scope.session;

};

$scope.authed();

$scope.user = {
    ...
    emailAddress: $scope.session.customer_email
        ...
    };
4

1 回答 1

1

它在你的标记中工作是因为 Angular 的模板引擎是“承诺感知”的,它非常方便。

文档中引用:

$q promises 被 Angular 模板引擎识别,这意味着在模板中,您可以将附加到范围的 Promise 视为结果值。

但是,在您的 JavaScript 代码中,您必须自己处理这一切:

$scope.user = {
    ...
    emailAddress : null,
    ...
};

$scope.details.then(function(details) {
    $scope.user.emailAddress = details.customer_email;
});
于 2013-07-29T20:46:40.910 回答