作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Angular 新手,我正在努力了解应该如何创建特定的 Promise。我还使用 typescript 进行编码。
我需要调用 Web 服务来进行身份验证,这必须分两步完成。
第 1 步
请求身份验证 key
第 2 步
使用身份验证 key 处理登录详细信息,并返回服务以检索登录用户或错误(如果不正确)
所以我创建了一个名为 AuthenticationService 的 Angular 服务像下面这样(这当然行不通)
export class Authentication
{
$inject: string[] = ['$http'];
public Authenticate( userName: string, password: string ): ng.IHttpPromise<ApiModel.ApiResult<ApiModel.AuthenticatedUser>>
{
$http.post( "/Account/AuthenticationKey", null )
.then<ApiModel.ApiResult<string>>( result =>
{
var strKey = userName + password; //TODO: Put correct code here!
var promiseToReturn = $http.post( "/Account/Authenticate", { key: strKey })
.then<ApiModel.ApiResult<ApiModel.AuthenticatedUser>>( result =>
{
return result;
});
});
}
}
如何从返回第二个结果的身份验证方法中返回具有正确返回类型的 promise ?
最佳答案
我可以告诉你,在 JavaScript 中,因为我不熟悉 typescript 。这个想法是创建你自己的 promise 并在你想要的时候解决它。基本上
var autenticate=function(user,password) {
var defer=$q.defer();
$http.post( "/Account/AuthenticationKey", null )
.then(function(data) {
//do something on data
$http.post( "/Account/Authenticate", { key: strKey })
.then(function(result) {
defer.resolve(result)
});
})
return defer.promise;
}
关于javascript - AngularJS 中的链式 Promis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19289965/
我是 Angular 新手,我正在努力了解应该如何创建特定的 Promise。我还使用 typescript 进行编码。 我需要调用 Web 服务来进行身份验证,这必须分两步完成。 第 1 步 请求身
我正在玩 ajax 并反复 promise 为 ajax 调用创建一个抽象版本。以下代码运行良好。 function ajax(url){ var xhr = { rq : f
我的下面的代码工作正常,我可以用它在数据库上创建一些数据,但之后我需要从中获取最新插入的ID以在代码的其他地方使用,但是这个导出返回 promise 对象的函数我可以不将变量分配为函数结果,例如: m
我是一名优秀的程序员,十分优秀!